Package org.xwiki.wiki.properties
Class WikiPropertyGroupException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.wiki.properties.WikiPropertyGroupException
-
- All Implemented Interfaces:
Serializable
public class WikiPropertyGroupException extends Exception
Encapsulate any exception related to WikiDescriptor Properties Groups.- Since:
- 5.1M2
- Version:
- $Id: 1c03b926c56ffe3a34dacccdb4cc7149abec1e0a $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WikiPropertyGroupException(String message)
Construct an exception with the specified detail message.WikiPropertyGroupException(String message, Throwable throwable)
Construct an exception with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
WikiPropertyGroupException
public WikiPropertyGroupException(String message)
Construct an exception with the specified detail message.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
WikiPropertyGroupException
public WikiPropertyGroupException(String message, Throwable throwable)
Construct an exception with the specified detail message and cause.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.throwable
- the cause. This can be retrieved later by the Throwable.getCause() method. (A null value is permitted, and indicates that the cause is nonexistent or unknown)
-
-