All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javabeanstack.ws.model.IErrorMessage Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package org.javabeanstack.ws.model;

/**
 *
 * @author Jorge Enciso
 */
public interface IErrorMessage {

    String getDocumentation();

    int getErrorCode();

    String getErrorMessage();

    void setDocumentation(String documentation);

    void setErrorCode(int errorCode);

    void setErrorMessage(String errorMessage);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy