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 w w . j ava 2s .c o m*/ /** * 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 AndARException extends Exception { public AndARException(String msg) { super(msg); } }