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

com.adp.marketplace.connection.exception.ConnectionException Maven / Gradle / Ivy

The newest version!
/*
	---------------------------------------------------------------------------
	Copyright © 2015-2016 ADP, LLC.   
	
	Licensed under the Apache License, Version 2.0 (the “License”); 
	you may not use this file except in compliance with the License.
	You may obtain a copy of the License at
	
	http://www.apache.org/licenses/LICENSE-2.0
	
	Unless required by applicable law or agreed to in writing, software 
	distributed under the License is distributed on an “AS IS” BASIS,
	WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
	implied.  See the License for the specific language governing 
	permissions and limitations under the License.
	---------------------------------------------------------------------------
*/
package com.adp.marketplace.connection.exception;


/**
 * Thrown to indicate when a connection is null or invalid
 * or has invalid configuration
 * 
 * @author tallaprs
 *
 */
public class ConnectionException extends Exception {

	private static final long serialVersionUID = 1L;

	/**
	 * constructs a {@link ConnectionException} with no detail message
	 */
	public ConnectionException() {
        super();
    }

	/**
	 * constructs a {@link ConnectionException} with a detail message
	 * 
	 * @param message describes the error message
	 */
    public ConnectionException(String message) {
        super(message);
    }
    
    /**
     * constructs a {@link ConnectionException} with detail message and
     * {@link Throwable} cause of the exception
     * 
     * @param message  describes the error message
     * @param cause    throwable cause
     */
    public ConnectionException(String message, Throwable cause) {
        super(message, cause);
    }
    
    /**
     * constructs a {@link ConnectionException} with {@link Throwable} 
     * cause of the exception
     * 
     * @param cause  throwable cause
     */
    public ConnectionException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy