X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.api%2Fsrc%2Forg%2Fargeo%2Fapi%2Fgcr%2FContentFeatureUnsupportedException.java;fp=org.argeo.api%2Fsrc%2Forg%2Fargeo%2Fapi%2Fgcr%2FContentFeatureUnsupportedException.java;h=0000000000000000000000000000000000000000;hb=7d2a002f5dcfe8a8c7b29803b70d4b1aff265ed1;hp=0e97a2427c32c42ab2129f3f569a19bb50f4dcca;hpb=865fc51900459b888938cc0d6943673ee6f20d09;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.api/src/org/argeo/api/gcr/ContentFeatureUnsupportedException.java b/org.argeo.api/src/org/argeo/api/gcr/ContentFeatureUnsupportedException.java deleted file mode 100644 index 0e97a2427..000000000 --- a/org.argeo.api/src/org/argeo/api/gcr/ContentFeatureUnsupportedException.java +++ /dev/null @@ -1,22 +0,0 @@ -package org.argeo.api.gcr; - -/** When a feature is not supported by the underlying repository. */ -public class ContentFeatureUnsupportedException extends UnsupportedOperationException { - private static final long serialVersionUID = 3193936026343114949L; - - public ContentFeatureUnsupportedException() { - } - - public ContentFeatureUnsupportedException(String message) { - super(message); - } - - public ContentFeatureUnsupportedException(Throwable cause) { - super(cause); - } - - public ContentFeatureUnsupportedException(String message, Throwable cause) { - super(message, cause); - } - -}