com.bld.commons.exception.OrderByException Maven / Gradle / Ivy
The newest version!
/**
* @author Francesco Baldi
* @mail [email protected]
* @class bld.commons.exception.PropertiesException.java
*/
package com.bld.commons.exception;
/**
* The Class PropertiesException.
*/
public class OrderByException extends RuntimeException {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/**
* Instantiates a new properties exception.
*/
public OrderByException() {
super();
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new properties exception.
*
* @param message the message
* @param cause the cause
* @param enableSuppression the enable suppression
* @param writableStackTrace the writable stack trace
*/
public OrderByException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new properties exception.
*
* @param message the message
* @param cause the cause
*/
public OrderByException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new properties exception.
*
* @param message the message
*/
public OrderByException(String message) {
super(message);
}
/**
* Instantiates a new properties exception.
*
* @param cause the cause
*/
public OrderByException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy