de.bytefish.pgbulkinsert.exceptions.SaveEntityFailedException Maven / Gradle / Ivy
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package de.bytefish.pgbulkinsert.exceptions;
public class SaveEntityFailedException extends RuntimeException {
public SaveEntityFailedException(String message) {
super(message);
}
public SaveEntityFailedException() {
}
public SaveEntityFailedException(String message, Throwable cause) {
super(message, cause);
}
public SaveEntityFailedException(Throwable cause) {
super(cause);
}
public SaveEntityFailedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}