Package org.xwiki.eventstream
Class EventStreamException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.eventstream.EventStreamException
-
- All Implemented Interfaces:
Serializable
public class EventStreamException extends Exception
Exception specific to the Event Stream module.- Since:
- 9.2RC1
- Version:
- $Id: ee81b7f6cffa11a6700cf119c0d0aeb8710680cf $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EventStreamException()
Construct an EventStreamException.EventStreamException(String message)
Constructs a new exception with the specified detail message.EventStreamException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.EventStreamException(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
-
EventStreamException
public EventStreamException()
Construct an EventStreamException.
-
EventStreamException
public EventStreamException(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)
-
EventStreamException
public EventStreamException(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
-
EventStreamException
public EventStreamException(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
-
-