Class WrappedException

All Implemented Interfaces:
Serializable

public final class WrappedException extends RuntimeException
Wrapped exception handler. Note: the use of RuntimeException is deliberate, declared exceptions only complicate programming and was excluded in .NET.
See Also:
  • Constructor Details

    • WrappedException

      public WrappedException(Exception wrapped_exception)
      Takes an existing exception and creates a new one while keeping the stack intact.
      Parameters:
      wrapped_exception - The exception.