]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.acr/src/org/argeo/api/acr/ContentResourceException.java
Experiment with package level A2 metadata
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / ContentResourceException.java
1 package org.argeo.api.acr;
2
3 /**
4 * When there is a problem the underlying resources, typically IO, network, DB
5 * access, etc.
6 */
7 public class ContentResourceException extends IllegalStateException {
8 private static final long serialVersionUID = -2850145213683756996L;
9
10 public ContentResourceException() {
11 }
12
13 public ContentResourceException(String s) {
14 super(s);
15 }
16
17 public ContentResourceException(Throwable cause) {
18 super(cause);
19 }
20
21 public ContentResourceException(String message, Throwable cause) {
22 super(message, cause);
23 }
24
25 }