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

cloud.altemista.fwk.common.connection.exception.ConnectionException Maven / Gradle / Ivy

There is a newer version: 3.1.0.RELEASE
Show newest version
package cloud.altemista.fwk.common.connection.exception;

/*
 * #%L
 * altemista-cloud common: connectivity utilities
 * %%
 * Copyright (C) 2017 - 2018 NTT DATA Corporation
 * %%
 * All rights reserved.
 * Todos los derechos reservados.
 * #L%
 */


import cloud.altemista.fwk.common.exception.CommonException;

/**
 * Connectivity exception.
 * @author NTT DATA
 */
public class ConnectionException extends CommonException {

	/** serialVersionUID long */
	private static final long serialVersionUID = 6307377985459946671L;

	/**
	 * Creates a new ConnectionException.
	 * @param code the code to be used to resolve the message of this exception
	 */
	public ConnectionException(String code) {
		super(code);
	}
	
	/**
	 * Creates a new ConnectionException.
	 * @param code the code to be used to resolve the message of this exception
	 * @param cause the cause 
	 */
	public ConnectionException(String code, Throwable cause) {
		super(code, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy