com.aeontronix.commons.exception.InvalidDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aeon-commons-core Show documentation
Show all versions of aeon-commons-core Show documentation
Various utility classes. Except for very rare exceptions (annotation-based validation) this will not
require any dependencies beyond the JRE
The newest version!
/*
* Copyright (c) 2014 Kloudtek Ltd
*/
package com.aeontronix.commons.exception;
import java.io.IOException;
/**
* Thrown when attempting to persist or read data that is invalid
*/
public class InvalidDataException extends IOException {
public InvalidDataException() {
}
public InvalidDataException(String message) {
super(message);
}
public InvalidDataException(String message, Throwable cause) {
super(message, cause);
}
public InvalidDataException(Throwable cause) {
super(cause);
}
}