Package java.lang

Class SecurityException


  • public class SecurityException
    extends RuntimeException
    A Java Card runtime environment-owned instance of SecurityException is thrown by the Java Card Virtual Machine to indicate a security violation.

    This exception is thrown when an attempt is made to illegally access an object belonging to another applet. It may optionally be thrown by a Java Card VM implementation to indicate fundamental language restrictions, such as attempting to invoke a private method in another class.

    For security reasons, the Java Card runtime environment implementation may mute the card instead of throwing this exception.

    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.

    This Java Card platform class's functionality is a strict subset of the definition in the JavaTM Platform Standard Edition (Java SETM) API Specification.

    • Constructor Summary

      Constructors 
      Constructor Description
      SecurityException()
      Constructs a SecurityException.
    • Method Summary

    • Constructor Detail

      • SecurityException

        public SecurityException()
        Constructs a SecurityException.