Class CardRuntimeException

    • Constructor Summary

      Constructors 
      Constructor Description
      CardRuntimeException​(short reason)
      Constructs a CardRuntimeException instance with the specified reason.
    • Constructor Detail

      • CardRuntimeException

        public CardRuntimeException​(short reason)
        Constructs a CardRuntimeException instance with the specified reason. To conserve on resources, use the throwIt() method to employ the Java Card runtime environment-owned instance of this class.
        Parameters:
        reason - the reason for the exception
    • Method Detail

      • getReason

        public short getReason()
        Gets the reason code
        Returns:
        the reason for the exception
      • setReason

        public void setReason​(short reason)
        Sets the reason code. Even if a transaction is in progress, the update of the internal reason field shall not participate in the transaction.
        Parameters:
        reason - the reason for the exception
      • throwIt

        public static void throwIt​(short reason)
                            throws CardRuntimeException
        Throws the Java Card runtime environment-owned instance of the CardRuntimeException class with the specified reason.

        Java Card runtime environment-owned instances of exception classes are temporary Java Card runtime environment Entry Point Objects and can be accessed from any applet context. References to these temporary objects cannot be stored in class variables or instance variables or array components. See Runtime Environment Specification, Java Card Platform, Classic Edition, section 6.2.1 for details.

        Parameters:
        reason - the reason for the exception
        Throws:
        CardRuntimeException - always