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: f4f738ef03139fc96294d2d7a304cff59396af55 $
- 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
public LiveDataException(String message)
Constructs a new live data exception with the specified detail message.- Parameters:
message
- the detail message- Since:
- 13.4RC1
-
-