X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=org.argeo.api.acr%2Fsrc%2Forg%2Fargeo%2Fapi%2Facr%2FContentFeatureUnsupportedException.java;fp=org.argeo.api.acr%2Fsrc%2Forg%2Fargeo%2Fapi%2Facr%2FContentFeatureUnsupportedException.java;h=485caa9a4fd8b8a6f5e25b636a80a53a71eb1518;hb=7d2a002f5dcfe8a8c7b29803b70d4b1aff265ed1;hp=0000000000000000000000000000000000000000;hpb=865fc51900459b888938cc0d6943673ee6f20d09;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.api.acr/src/org/argeo/api/acr/ContentFeatureUnsupportedException.java b/org.argeo.api.acr/src/org/argeo/api/acr/ContentFeatureUnsupportedException.java new file mode 100644 index 000000000..485caa9a4 --- /dev/null +++ b/org.argeo.api.acr/src/org/argeo/api/acr/ContentFeatureUnsupportedException.java @@ -0,0 +1,22 @@ +package org.argeo.api.acr; + +/** 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); + } + +}