- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.io7m.jspiel.api.RiffException
-
- com.io7m.jspiel.api.RiffWriteException
-
- All Implemented Interfaces:
java.io.Serializable
public final class RiffWriteException extends RiffException
The type of exceptions thrown by writers.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RiffWriteException(java.lang.String message, java.lang.Throwable cause, java.net.URI in_source, long in_offset)Construct an exception.RiffWriteException(java.lang.String message, java.net.URI in_source, long in_offset)Construct an exception.RiffWriteException(java.lang.Throwable cause, java.net.URI in_source, long in_offset)Construct an exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longoffset()java.net.URIsource()
-
-
-
Constructor Detail
-
RiffWriteException
public RiffWriteException(java.lang.String message, java.net.URI in_source, long in_offset)Construct an exception.- Parameters:
message- The messagein_offset- The offset in octets within the input that caused the errorin_source- The source URI
-
RiffWriteException
public RiffWriteException(java.lang.String message, java.lang.Throwable cause, java.net.URI in_source, long in_offset)Construct an exception.- Parameters:
message- The messagecause- The underlying causein_offset- The offset in octets within the input that caused the errorin_source- The source URI
-
RiffWriteException
public RiffWriteException(java.lang.Throwable cause, java.net.URI in_source, long in_offset)Construct an exception.- Parameters:
cause- The underlying causein_offset- The offset in octets within the input that caused the errorin_source- The source URI
-
-