Package cz.martlin.xspf.util
Class XSPFRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- cz.martlin.xspf.util.XSPFRuntimeException
-
- All Implemented Interfaces:
Serializable
public class XSPFRuntimeException extends RuntimeException
An general unchecked (runtime) exception occured during the processing of the XSPF file. This exception can get thrown in the cases, where the checked exception is not applicable, i.e. during the Java streams operations. Do not instantite and throw directly, use theExceptionWrapperto do so.- Author:
- martin
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XSPFRuntimeException(String message)Creates instance.XSPFRuntimeException(String message, Throwable cause)Creates instance.XSPFRuntimeException(Throwable cause)Creates instance.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
XSPFRuntimeException
public XSPFRuntimeException(String message, Throwable cause)
Creates instance.- Parameters:
message-cause-
-
XSPFRuntimeException
public XSPFRuntimeException(String message)
Creates instance.- Parameters:
message-
-
XSPFRuntimeException
public XSPFRuntimeException(Throwable cause)
Creates instance.- Parameters:
cause-
-
-