AndARException.java :  » UnTagged » mobilebombsquad » edu » dhbw » andar » exceptions » Android Open Source

Android Open Source » UnTagged » mobilebombsquad 
mobilebombsquad » edu » dhbw » andar » exceptions » AndARException.java
package edu.dhbw.andar.exceptions;

/**
 * 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);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.