Package de.susebox.java.lang

Examples of de.susebox.java.lang.ExtNullPointerException


   * @throws NullPointerException if one of the parameters is <code>null</code>
   */
  public static void setEnvironment(Object obj, Environment env) throws NullPointerException {
    // test parameters
    if (obj == null) {
      throw new ExtNullPointerException("No object given.");
    } else if (env == null) {
      throw new ExtNullPointerException("No environment given.");
    }
   
    // create hashtable for the environments
    synchronized(_syncMonitor) {
      if (_environmentMap == null) {
View Full Code Here

TOP

Related Classes of de.susebox.java.lang.ExtNullPointerException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.