gu.sql2java.utils.SerializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
The newest version!
package gu.sql2java.utils;
/**
* copy from org.apache.commons.lang.SerializationException (commons-lang:commons-lang.2.4)
* Exception thrown when the Serialization process fails.
*
* The original error is wrapped within this one.
*
* @author Stephen Colebourne
* @since 3.24.0
*/
public class SerializationException extends RuntimeException {
/**
* Required for serialization support.
*
* @see java.io.Serializable
*/
private static final long serialVersionUID = 4029025366392702726L;
/**
* Constructs a new SerializationException
without specified
* detail message.
*/
public SerializationException() {
super();
}
/**
* Constructs a new SerializationException
with specified
* detail message.
*
* @param msg The error message.
*/
public SerializationException(String msg) {
super(msg);
}
/**
* Constructs a new SerializationException
with specified
* nested Throwable
.
*
* @param cause The Exception
or Error
* that caused this exception to be thrown.
*/
public SerializationException(Throwable cause) {
super(cause);
}
/**
* Constructs a new SerializationException
with specified
* detail message and nested Throwable
.
*
* @param msg The error message.
* @param cause The Exception
or Error
* that caused this exception to be thrown.
*/
public SerializationException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy