Missed adding exceptions.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/sandbox/graph2/trunk@144614 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ddp
2002-05-08 18:07:41 +00:00
parent 2d7c74417c
commit e755c1b948
3 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
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);
}
}

View File

@@ -0,0 +1,38 @@
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);
}
}

View File

@@ -0,0 +1,38 @@
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;
}
}