X-Git-Url: https://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=0e97a2427c32c42ab2129f3f569a19bb50f4dcca;hb=5a36795f16b1b2a58188db84d6546b501626bda8;hp=0000000000000000000000000000000000000000;hpb=06af25d84c049b149ee9db2235faeff3170b4f7e;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 new file mode 100644 index 000000000..0e97a2427 --- /dev/null +++ b/org.argeo.api/src/org/argeo/api/gcr/ContentFeatureUnsupportedException.java @@ -0,0 +1,22 @@ +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); + } + +}