Class AppException

    • Constructor Detail

      • AppException

        public AppException​(String message)
        Basic constructor with only a message explaining the cause of the error.
        Parameters:
        message - The message explaining the error that occurred.
      • AppException

        public AppException​(Throwable cause)
        Basic constructor with only the cause of the error.
        Parameters:
        cause - The original cause of the error.
      • AppException

        public AppException​(String message,
                            Throwable cause)
        Constructor with both a message and an exception explaining the cause of the error.
        Parameters:
        message - The message explaining the error that occurred.
        cause - The original cause of the error.