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

ibt.ortc.extensibility.exception.OrtcNotConnectedException Maven / Gradle / Ivy

There is a newer version: 2.1.44
Show newest version
/**
 * @fileoverview This file contains the implementation of the not connected exception
 * @author ORTC team members ([email protected])
 */
package ibt.ortc.extensibility.exception;

public class OrtcNotConnectedException extends Exception {

	private static final long serialVersionUID = -5717798427917093305L;
	
	public OrtcNotConnectedException(){
		super("Not connected");
	}	
	
	public OrtcNotConnectedException(String message){
		super(message);
	}	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy