com.sudicode.fb2gh.FB2GHException Maven / Gradle / Ivy
package com.sudicode.fb2gh;
/**
* Exception thrown by FB2GH.
*/
@SuppressWarnings("serial")
public class FB2GHException extends Exception {
/**
* Construct a new FB2GHException
with the specified message.
*
* @param message The message
*/
public FB2GHException(final String message) {
super(message);
}
/**
* Construct a new FB2GHException
with the specified cause.
*
* @param cause The cause
*/
public FB2GHException(final Throwable cause) {
super(cause);
}
/**
* Construct a new FB2GHException
with the specified message and cause.
*
* @param message The message
* @param cause The cause
*/
public FB2GHException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy