All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.wst.common.environment.EnvironmentException Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2004, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.common.environment;

import org.eclipse.core.runtime.IStatus;

/**
 * This is the exception class for conditions raised by the IEnvironment.
 * 
 * @since 1.0
 */
public class EnvironmentException extends Exception
{
  /**
   * Comment for serialVersionUID
   */
  private static final long serialVersionUID = 3978983275899402036L;
  
  /**
   * The status for this exception.
   */
  protected IStatus status = null;
  
  /**
   * Creates a new EnvironmentException.
   */
  public EnvironmentException ()
  {
    super();
  }

  /**
   * Creates a new EnvironmentException.
   * 
   * @param status the status for this exception.
   */
  public EnvironmentException ( IStatus status )
  {
    super(status == null ? null : status.getMessage());
    this.status = status;
  }

  /**
   * Returns the Status object.
   * 
   * @return the status for this exception.
   */
  public IStatus getStatus()
  {
    return status;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy