X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.api%2Fsrc%2Forg%2Fargeo%2Fapi%2Fgcr%2FContentResourceException.java;fp=org.argeo.api%2Fsrc%2Forg%2Fargeo%2Fapi%2Fgcr%2FContentResourceException.java;h=0000000000000000000000000000000000000000;hb=7d2a002f5dcfe8a8c7b29803b70d4b1aff265ed1;hp=fa7195e7ff47ed02470133a4e5da1664688f6e33;hpb=865fc51900459b888938cc0d6943673ee6f20d09;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.api/src/org/argeo/api/gcr/ContentResourceException.java b/org.argeo.api/src/org/argeo/api/gcr/ContentResourceException.java deleted file mode 100644 index fa7195e7f..000000000 --- a/org.argeo.api/src/org/argeo/api/gcr/ContentResourceException.java +++ /dev/null @@ -1,25 +0,0 @@ -package org.argeo.api.gcr; - -/** - * When there is a problem the underlying resources, typically IO, network, DB - * access, etc. - */ -public class ContentResourceException extends IllegalStateException { - private static final long serialVersionUID = -2850145213683756996L; - - public ContentResourceException() { - } - - public ContentResourceException(String s) { - super(s); - } - - public ContentResourceException(Throwable cause) { - super(cause); - } - - public ContentResourceException(String message, Throwable cause) { - super(message, cause); - } - -}