Class InternalCalculationException

All Implemented Interfaces:
Serializable

public class InternalCalculationException extends RuntimeException
InternalCalculationException is an exception that is thrown when a a method fails during the construction of a drawable object or during the calculation of a property of a drawable object.

Copyright (c) 2020-2025 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, Wouter Schakel
See Also:
  • Constructor Details

    • InternalCalculationException

      public InternalCalculationException()
      Create an empty runtime calculation exception, indicating an error during the construction of a drawable object or during the calculation of a property of a drawable object.
    • InternalCalculationException

      public InternalCalculationException(String message)
      Create a runtime calculation exception with a custom message, indicating an error during the construction of a drawable object or during the calculation of a property of a drawable object.
      Parameters:
      message - the custom message.
    • InternalCalculationException

      public InternalCalculationException(Throwable cause)
      Create a runtime calculation exception with an underlying cause, indicating an error during the construction of a drawable object or during the calculation of a property of a drawable object.
      Parameters:
      cause - the cause of this exception to be thrown
    • InternalCalculationException

      public InternalCalculationException(String message, Throwable cause)
      Create a runtime calculation exception with a custom message and an underlying cause, indicating an error during the construction of a drawable object or during the calculation of a property of a drawable object.
      Parameters:
      message - the custom message
      cause - the cause of this exception to be thrown