Package org.xwiki.livedata
Class LiveDataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.livedata.LiveDataException
-
- All Implemented Interfaces:
Serializable
public class LiveDataException extends Exception
Exception related to live data processing.- Since:
- 12.10
- Version:
- $Id: 7c4343fc5b2878cb78dddb0721ae57802e75140f $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LiveDataException(String message)
Constructs a new live data exception with the specified detail message.LiveDataException(String message, Throwable source)
Creates a new instance with the specified message and source.LiveDataException(Throwable source)
Creates a new instance that wraps the specified source throwable.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LiveDataException
public LiveDataException(Throwable source)
Creates a new instance that wraps the specified source throwable.- Parameters:
source
- source of the error
-
LiveDataException
@Unstable public LiveDataException(String message)
Constructs a new live data exception with the specified detail message.- Parameters:
message
- the detail message- Since:
- 13.4RC1
-
-