
com.aeontronix.commons.dao.InvalidDataException Maven / Gradle / Ivy
/*
* Copyright (c) 2014 Kloudtek Ltd
*/
package com.aeontronix.commons.dao;
/**
* Thrown when attempting to persist or read data that is invalid
*/
public class InvalidDataException extends DAOException {
public InvalidDataException() {
}
public InvalidDataException(String message) {
super(message);
}
public InvalidDataException(String message, Throwable cause) {
super(message, cause);
}
public InvalidDataException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy