Package Name: java.lang.runtimeexception

Return to: Package List


-- with java.lang.Exception; use java.lang.Exception; 
     -- "exception" is an Ada reserved word
with java.lang.String; use java.lang.String;

package java.lang.RuntimeException is
    type RuntimeException_Obj is tagged limited null record;
      -- "exception" is reserved; really is derived from java.lang.Exception

    type RuntimeException_Ptr is access all RuntimeException_Obj'Class;

    procedure init_RuntimeException(Obj : access RuntimeException_Obj'Class);
    procedure init_RuntimeException(Obj : access RuntimeException_Obj'Class;

        s : String_Ptr);

    pragma Import(Java_Constructor, init_RuntimeException);
end java.lang.RuntimeException;