Package nzilbb.media
Class MediaException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- nzilbb.media.MediaException
-
- All Implemented Interfaces:
Serializable
public class MediaException extends Exception
Exception during media processing.- Author:
- Robert Fromont robert@fromont.net.nz
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MediaException()
Default constructor.MediaException(String message)
Constructor with message.MediaException(String message, Throwable cause)
Constructor with message and cause.MediaException(Throwable cause)
Constructor with 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
-
MediaException
public MediaException()
Default constructor.
-
MediaException
public MediaException(String message)
Constructor with message.- Parameters:
message
- The error message.
-
MediaException
public MediaException(Throwable cause)
Constructor with cause.- Parameters:
cause
- The root cause of the error.
-
-