ParseException.java :  » UnTagged » preflect » com » ryanm » preflect » Android Open Source

Android Open Source » UnTagged » preflect 
preflect » com » ryanm » preflect » ParseException.java

package com.ryanm.preflect;

/**
 * Use this to indicate failure when codec-ing in your
 * {@link VariableType}
 * 
 * @author ryanm
 */
public class ParseException extends Exception
{
  /**
   * @param message
   */
  public ParseException( String message )
  {
    super( message );
  }

  /**
   * @param cause
   */
  public ParseException( Throwable cause )
  {
    super( cause );
  }

  /**
   * @param message
   * @param cause
   */
  public ParseException( 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.