InvalidFormatException.java :  » Game » kaddath » fr » xebia » mowitnow » automower » loader » exception » Android Open Source

Android Open Source » Game » kaddath 
kaddath » fr » xebia » mowitnow » automower » loader » exception » InvalidFormatException.java
package fr.xebia.mowitnow.automower.loader.exception;

/**
 * 
 * Exception thrown as soon as an invalid line is found in a configuration file
 * 
 */
public class InvalidFormatException extends Exception {

  public InvalidFormatException(String message) {
    super(message);
  }

  public InvalidFormatException(String message, Throwable cause) {
    super(message, cause);
  }
}
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.