Class OrekitExceptionWrapper

  • All Implemented Interfaces:
    Serializable

    @Deprecated
    public class OrekitExceptionWrapper
    extends RuntimeException
    Deprecated.
    as of 9.3, this class is not used anymore, as OrekitException is now an unchecked exception
    This class allows to wrap OrekitException instances in RuntimeException.

    Wrapping OrekitException instances is useful when a low level method throws one such exception and this method must be called from another one which does not allow this exception. Typical examples are propagation methods that are used inside Apache Commons optimizers, integrators or solvers.

    Author:
    Luc Maisonobe
    See Also:
    Serialized Form
    • Constructor Detail

      • OrekitExceptionWrapper

        public OrekitExceptionWrapper​(OrekitException wrappedException)
        Deprecated.
        Simple constructor.
        Parameters:
        wrappedException - Orekit exception to wrap
    • Method Detail

      • getException

        public OrekitException getException()
        Deprecated.
        Get the wrapped exception.
        Returns:
        wrapped exception