Class DrawRuntimeException

All Implemented Interfaces:
Serializable

public class DrawRuntimeException extends RuntimeException
DrawRuntimeException is the root exception for drawing exceptions that do not have to be specified.

Copyright (c) 2020-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUTILS License.

Author:
Alexander Verbraeck, Peter Knoppers
See Also:
  • Constructor Details

    • DrawRuntimeException

      public DrawRuntimeException()
      Create an empty runtime drawing exception.
    • DrawRuntimeException

      public DrawRuntimeException(String message)
      Create a runtime drawing exception with a custom message.
      Parameters:
      message - String; the custom message.
    • DrawRuntimeException

      public DrawRuntimeException(Throwable cause)
      Create a runtime drawing exception with an underlying cause.
      Parameters:
      cause - Throwable; the cause of this exception to be thrown
    • DrawRuntimeException

      public DrawRuntimeException(String message, Throwable cause)
      Create a runtime drawing exception with a custom message and an underlying cause.
      Parameters:
      message - String; the custom message
      cause - Throwable; the cause of this exception to be thrown