All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.registration.exception.ConnectionException Maven / Gradle / Ivy

package io.mosip.registration.exception;

import io.mosip.kernel.core.exception.BaseCheckedException;

public class ConnectionException extends BaseCheckedException  {

    /**
     * Constructs a new checked exception
     */
    public ConnectionException() {
        super();
    }

     /**
     * Constructs a new checked exception with the specified detail message and
     * error code.
     *
     * @param errorCode
     *            the error code
     * @param errorMessage
     *            the detail message
     * @param throwable
     *            the specified cause
     */
    public ConnectionException(String errorCode, String errorMessage, Throwable throwable) {
        super(errorCode, errorMessage, throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy