com.bikeemotion.common.exception.TimeoutException Maven / Gradle / Ivy
/**
* Copyright (C) Bikeemotion
* 2014
*
* The reproduction, transmission or use of this document or its contents is not
* permitted without express written authorization. All rights, including rights
* created by patent grant or registration of a utility model or design, are
* reserved. Modifications made to this document are restricted to authorized
* personnel only. Technical specifications and features are binding only when
* specifically and expressly agreed upon in a written contract.
*/
package com.bikeemotion.common.exception;
public class TimeoutException extends BusinessException {
public TimeoutException() {}
public TimeoutException(String message) {
super(message);
}
public TimeoutException(Throwable cause) {
super(cause);
}
public TimeoutException(String message, Throwable cause) {
super(message, cause);
}
public TimeoutException(String message, ExceptionErrorCodes code) {
super(message, code);
}
public TimeoutException(String message, ExceptionMeta meta) {
super(message, meta);
}
public TimeoutException(String message, ExceptionErrorCodes code, ExceptionMeta meta) {
super(message, code, meta);
}
public TimeoutException(String message, Throwable cause, ExceptionErrorCodes code) {
super(message, cause, code);
}
public TimeoutException(String message, Throwable cause, ExceptionMeta meta) {
super(message, cause, meta);
}
public TimeoutException(String message, Throwable cause, ExceptionErrorCodes code, ExceptionMeta meta) {
super(message, cause, code, meta);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy