Class EnvironmentImpl

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.Exception _exc  
    • Constructor Summary

      Constructors 
      Constructor Description
      EnvironmentImpl()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void clear()
      Clears this Environment object of its exception.
      java.lang.Exception exception()
      Retrieves the exception in this Environment object.
      void exception​(java.lang.Exception exc)
      Inserts the given exception into this Environment object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • _exc

        private java.lang.Exception _exc
    • Constructor Detail

      • EnvironmentImpl

        public EnvironmentImpl()
    • Method Detail

      • exception

        public java.lang.Exception exception()
        Description copied from class: Environment
        Retrieves the exception in this Environment object.
        Specified by:
        exception in class Environment
        Returns:
        the exception in this Environment object
      • exception

        public void exception​(java.lang.Exception exc)
        Description copied from class: Environment
        Inserts the given exception into this Environment object.
        Specified by:
        exception in class Environment
        Parameters:
        exc - the exception to be set
      • clear

        public void clear()
        Description copied from class: Environment
        Clears this Environment object of its exception.
        Specified by:
        clear in class Environment