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

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

public class APIFailedResult extends APIResult {

  public String code;
  public String message;
  
  public APIFailedResult(String code, String message) {
    super(STATUS_FAILED);
    this.code = code;
    this.message = message;
  }

}
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.