Class ClientException

All Implemented Interfaces:
AutograderException, Serializable

public class ClientException extends RuntimeException implements AutograderException
Signals that an error occurred within the autograder due to misuse of the API, such as calling Autograder.init() repeatedly or passing an invalid argument.
See Also:
  • Constructor Details

    • ClientException

      public ClientException(String message, Throwable cause)
      Constructs a ClientException with the specified message and cause.
      Parameters:
      message - an explanation
      cause - the underlying cause
    • ClientException

      public ClientException(String message)
      Constructs a ClientException with the specified message and cause.
      Parameters:
      message - an explanation