Package com.xpn.xwiki.doc
Class DocumentRevisionExcepion
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.xpn.xwiki.doc.DocumentRevisionExcepion
-
- All Implemented Interfaces:
Serializable
public class DocumentRevisionExcepion extends Exception
Exception generated byDocumentRevisionProvider
.- Since:
- 9.3RC1
- Version:
- $Id: 58978933d58d3dc139d7006f7a2153621b37a7df $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DocumentRevisionExcepion(String message)
Constructs a new exception with the specified detail message.DocumentRevisionExcepion(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.DocumentRevisionExcepion(Throwable 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
-
DocumentRevisionExcepion
public DocumentRevisionExcepion(String message)
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(Throwable)
.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
DocumentRevisionExcepion
public DocumentRevisionExcepion(Throwable cause)
- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown
-
DocumentRevisionExcepion
public DocumentRevisionExcepion(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method)cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown
-
-