QuestMLException.java :  » UnTagged » questor-engine » net » kleinhenz » questor » exceptions » Android Open Source

Android Open Source » UnTagged » questor engine 
questor engine » net » kleinhenz » questor » exceptions » QuestMLException.java
package net.kleinhenz.questor.exceptions;

public class QuestMLException extends Exception
{
  private static final long serialVersionUID = 8857717249244148237L;

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

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