EntityNotFoundException.java :  » Content-Management-System » daisy » org » outerj » daisy » sync » Java Open Source

Java Open Source » Content Management System » daisy 
daisy » org » outerj » daisy » sync » EntityNotFoundException.java
package org.outerj.daisy.sync;

public class EntityNotFoundException extends Exception {
  private static final long serialVersionUID = -5204876924715645299L;
  
  public EntityNotFoundException(String message){
    super(message);
  }
  public EntityNotFoundException(Throwable e){
    super(e);
  }
  public EntityNotFoundException(String message, Throwable e){
    super(message, e);
  }
}
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.