APIExceptionResult.java :  » Wiki-Engine » ocwiki » org » ocwiki » controller » api » Java Open Source

Java Open Source » Wiki Engine » ocwiki 
ocwiki » org » ocwiki » controller » api » APIExceptionResult.java
package org.ocwiki.controller.api;

public class APIExceptionResult extends APIFailedResult {

  public String type;
  
  public APIExceptionResult(Exception ex) {
    super("exception", ex.getMessage());
    this.type = ex.getClass().getName();
  }
  
}
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.