Back to project page ScalAR.
The source code is released under:
GNU General Public License
If you think the Android project ScalAR listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.dhbw.andar.exceptions; /* w ww . j a v a 2 s. c om*/ /** * There are different reasons, why an AndARException may occur. * Though they are rather unlikely. * Nevertheless they should be catched, so that the user might be informed. * If they occur they are rather severe, which means the library doesn't work. * Therefor they inherit from RuntimeExecptions. * This also means, that they may be thrown at any time. * @author Tobi * */ public class AndARRuntimeException extends RuntimeException { public AndARRuntimeException(String msg) { super(msg); } }