nyla.solutions.core.exception.NonSerializableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.core Show documentation
Show all versions of nyla.solutions.core Show documentation
This Java API provides support for application utilities (application configuration, data encryption, debugger, text processing, and more).
The newest version!
package nyla.solutions.core.exception;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
/**
*
* NonSerializableException used to indicate that a given field is required.
*
* @author Gregory Green
* @version 1.0
*/
public class NonSerializableException extends DataException
{
public NonSerializableException()
{
}
public NonSerializableException(String message)
{
super(message);
}
public NonSerializableException(String message, Throwable aThrowable)
{
super(message, aThrowable);
}
public NonSerializableException(Throwable e) {
super(e);
}
}