Back to project page SipgateInfo.
The source code is released under:
GNU General Public License
If you think the Android project SipgateInfo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/*-----------------------------------------------------------------------+ | sipgate Kontostand/*from w ww . ja v a2s . c o m*/ | | $Id: codetemplates.xml 9 2009-03-06 10:09:52Z mks $ | | | Copyright (c) 2004-2011 Technische Universitaet Muenchen | | | | Technische Universitaet Muenchen ######### ########## | | Institut fuer Informatik - Lehrstuhl IV ## ## ## ## ## | | Prof. Dr. Manfred Broy ## ## ## ## ## | | Boltzmannstr. 3 ## ## ## ## ## | | 85748 Garching bei Muenchen ## ## ## ## ## | | Germany ## ###### ## ## | +-----------------------------------------------------------------------*/ package net.skweez.sipgate.api; /** * * @author mks * @author $Author: mks $ * @version $Rev: 9 $ * @levd.rating RED Rev: */ public class SipgateException extends RuntimeException { public SipgateException(Exception cause) { super(cause); } public SipgateException(String message) { super(message); } }