Class InternalCalculationException

All Implemented Interfaces:
Serializable

public class InternalCalculationException extends DrawRuntimeException
InternalCalculationException is a special type of DrawRuntimeException, that is thrown if a method fails during the construction of a drawable object or during the calculation of a property of a drawable object.

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

    • InternalCalculationException

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

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

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

      public InternalCalculationException(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