You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dd...@apache.org on 2002/05/08 20:07:41 UTC

cvs commit: jakarta-commons-sandbox/graph2/src/java/org/apache/commons/graph/domain/uml/exception ModelNotFoundException.java

ddp         02/05/08 11:07:41

  Added:       graph2/src/java/org/apache/commons/graph/domain/dependency/exception
                        CircularDependencyException.java
               graph2/src/java/org/apache/commons/graph/domain/statemachine/exception
                        StateMachineException.java
               graph2/src/java/org/apache/commons/graph/domain/uml/exception
                        ModelNotFoundException.java
  Log:
  Missed adding exceptions.
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/graph2/src/java/org/apache/commons/graph/domain/dependency/exception/CircularDependencyException.java
  
  Index: CircularDependencyException.java
  ===================================================================
  package org.apache.commons.graph.dependency.exception;
  
  import org.apache.commons.graph.exception.*;
  
  /**
   * Description of the Class
   */
  public class CircularDependencyException
       extends CycleException
  {
      /**
       * Constructor for the CircularDependencyException object
       */
      public CircularDependencyException()
      {
          super();
      }
  
      /**
       * Constructor for the CircularDependencyException object
       *
       * @param msg
       */
      public CircularDependencyException(String msg)
      {
          super(msg);
      }
  
      /**
       * Constructor for the CircularDependencyException object
       *
       * @param cause
       */
      public CircularDependencyException(Throwable cause)
      {
          super(cause);
      }
  }
  
  
  
  1.1                  jakarta-commons-sandbox/graph2/src/java/org/apache/commons/graph/domain/statemachine/exception/StateMachineException.java
  
  Index: StateMachineException.java
  ===================================================================
  package org.apache.commons.graph.statemachine.exception;
  
  import org.apache.commons.graph.exception.*;
  
  /**
   * Description of the Class
   */
  public class StateMachineException
       extends GraphException
  {
      /**
       * Constructor for the StateMachineException object
       */
      public StateMachineException()
      {
          super();
      }
  
      /**
       * Constructor for the StateMachineException object
       *
       * @param msg
       */
      public StateMachineException(String msg)
      {
          super(msg);
      }
  
      /**
       * Constructor for the StateMachineException object
       *
       * @param t
       */
      public StateMachineException(Throwable t)
      {
          super(t);
      }
  }
  
  
  
  1.1                  jakarta-commons-sandbox/graph2/src/java/org/apache/commons/graph/domain/uml/exception/ModelNotFoundException.java
  
  Index: ModelNotFoundException.java
  ===================================================================
  package org.apache.commons.graph.domain.uml.exception;
  
  /**
   * Description of the Class
   */
  public class ModelNotFoundException extends Exception
  {
      private Throwable cause = null;
  
      /**
       * Constructor for the ModelNotFoundException object
       */
      public ModelNotFoundException()
      {
          super();
      }
  
      /**
       * Constructor for the ModelNotFoundException object
       *
       * @param msg
       */
      public ModelNotFoundException(String msg)
      {
          super(msg);
      }
  
      /**
       * Constructor for the ModelNotFoundException object
       *
       * @param cause
       */
      public ModelNotFoundException(Throwable cause)
      {
          super(cause.getMessage());
          this.cause = cause;
      }
  }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>