com.github.gustavovitor.maker.service.exceptions.DocumentNotFoundException Maven / Gradle / Ivy
package com.github.gustavovitor.maker.service.exceptions;
public class DocumentNotFoundException extends RuntimeException {
public DocumentNotFoundException() {
}
public DocumentNotFoundException(String message) {
super(message);
}
public DocumentNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public DocumentNotFoundException(Throwable cause) {
super(cause);
}
public DocumentNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}