Source code for casex.exceptions

[docs]class NegativeHorizontalVelocityError(Exception): """The horizontal velocity is negative.""" pass
[docs]class HorizontalSmallerThanVerticalVelocityError(Exception): """The horizontal velocity is smaller than the vertical velocity.""" pass
[docs]class InvalidAircraftError(Exception): """The aircraft is not of type AircraftSpecs.""" pass
[docs]class OnlyOneVetorInputError(Exception): """There are more than one vector input, which is not supported.""" pass