]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.acr/src/org/argeo/api/acr/ContentFeatureUnsupportedException.java
Clarify system roles
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / ContentFeatureUnsupportedException.java
1 package org.argeo.api.acr;
2
3 /** When a feature is not supported by the underlying repository. */
4 public class ContentFeatureUnsupportedException extends UnsupportedOperationException {
5 private static final long serialVersionUID = 3193936026343114949L;
6
7 public ContentFeatureUnsupportedException() {
8 }
9
10 public ContentFeatureUnsupportedException(String message) {
11 super(message);
12 }
13
14 public ContentFeatureUnsupportedException(Throwable cause) {
15 super(cause);
16 }
17
18 public ContentFeatureUnsupportedException(String message, Throwable cause) {
19 super(message, cause);
20 }
21
22 }