Class VootErrorResponse

java.lang.Object
edu.internet2.middleware.grouperVoot.messages.VootErrorResponse

public class VootErrorResponse extends Object
Class representing an error in the VOOT call.
  • Constructor Details

    • VootErrorResponse

      public VootErrorResponse(String error)
      Constructor with only short error name.
      Parameters:
      error - the error name.
    • VootErrorResponse

      public VootErrorResponse(String error, String error_description)
      Constructor with short error name and its description.
      Parameters:
      error - the error name.
      error_description - the description of the error occurred.
  • Method Details

    • getError

      public String getError()
      Return the error message.
      Returns:
      the error message.
    • setError

      public void setError(String error1)
      Set the error message.
      Parameters:
      error1 - the error message.
    • getError_description

      public String getError_description()
      Return the error description.
      Returns:
      the error description.
    • setError_description

      public void setError_description(String error_description1)
      Set the error description.
      Parameters:
      error_description1 - the error description.