001// Licensed under the MIT license. See LICENSE file in the project root for full license information.
002
003package de.bytefish.pgbulkinsert.exceptions;
004
005public class ValueHandlerNotRegisteredException extends RuntimeException {
006
007    public ValueHandlerNotRegisteredException(String message) {
008        super(message);
009    }
010
011    public ValueHandlerNotRegisteredException() {
012    }
013
014    public ValueHandlerNotRegisteredException(String message, Throwable cause) {
015        super(message, cause);
016    }
017
018    public ValueHandlerNotRegisteredException(Throwable cause) {
019        super(cause);
020    }
021
022    public ValueHandlerNotRegisteredException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
023        super(message, cause, enableSuppression, writableStackTrace);
024    }
025}