com.github.debugthug.exceptions.CreateBookingException Maven / Gradle / Ivy
package com.github.debugthug.exceptions;
public class CreateBookingException extends Exception {
/**
*
*/
private static final long serialVersionUID = 4686147786120984674L;
public CreateBookingException(String message, Throwable cause) {
super(message, cause);
}
public CreateBookingException(String message) {
super(message);
}
public CreateBookingException(Throwable cause) {
super(cause);
}
}