Initial commit from SVN.
This commit is contained in:
24
Common/src/com/common/exception/CommonRuntimeException.java
Normal file
24
Common/src/com/common/exception/CommonRuntimeException.java
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright (c) 1999,2005 Declarative Engineering LLC.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Declarative Engineering LLC
|
||||
* verson 1 which accompanies this distribution, and is available at
|
||||
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||||
*/
|
||||
package com.common.exception;
|
||||
|
||||
public class CommonRuntimeException extends RuntimeException {
|
||||
/**
|
||||
* CommonRuntimeException constructor.
|
||||
*/
|
||||
public CommonRuntimeException() {
|
||||
super();
|
||||
}//CommonRuntimeException()//
|
||||
/**
|
||||
* CommonRuntimeException constructor.
|
||||
* @param description String The exception description.
|
||||
*/
|
||||
public CommonRuntimeException(String description) {
|
||||
super(description);
|
||||
}//CommonRuntimeException()//
|
||||
}//CommonRuntimeException//
|
||||
24
Common/src/com/common/exception/EventException.java
Normal file
24
Common/src/com/common/exception/EventException.java
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright (c) 1999,2005 Declarative Engineering LLC.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Declarative Engineering LLC
|
||||
* verson 1 which accompanies this distribution, and is available at
|
||||
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||||
*/
|
||||
package com.common.exception;
|
||||
|
||||
public class EventException extends CommonRuntimeException {
|
||||
/**
|
||||
* EventException constructor.
|
||||
*/
|
||||
public EventException() {
|
||||
super();
|
||||
}//EventException()//
|
||||
/**
|
||||
* EventException constructor.
|
||||
* @param description String The exception description.
|
||||
*/
|
||||
public EventException(String description) {
|
||||
super(description);
|
||||
}//EventException()//
|
||||
}//EventException//
|
||||
24
Common/src/com/common/exception/IOSecurityException.java
Normal file
24
Common/src/com/common/exception/IOSecurityException.java
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright (c) 1999,2005 Declarative Engineering LLC.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Declarative Engineering LLC
|
||||
* verson 1 which accompanies this distribution, and is available at
|
||||
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||||
*/
|
||||
package com.common.exception;
|
||||
|
||||
public class IOSecurityException extends java.io.IOException {
|
||||
/**
|
||||
* IOSecurityException constructor.
|
||||
*/
|
||||
public IOSecurityException() {
|
||||
super();
|
||||
}//IOSecurityException()//
|
||||
/**
|
||||
* IOSecurityException constructor.
|
||||
* @param description The exception's description.
|
||||
*/
|
||||
public IOSecurityException(String description) {
|
||||
super(description);
|
||||
}//IOSecurityException()//
|
||||
}//IOSecurityException//
|
||||
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright (c) 1999,2005 Declarative Engineering LLC.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Declarative Engineering LLC
|
||||
* verson 1 which accompanies this distribution, and is available at
|
||||
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||||
*/
|
||||
package com.common.exception;
|
||||
|
||||
public class IllegalOperationException extends CommonRuntimeException {
|
||||
/**
|
||||
* IllegalOperationException constructor.
|
||||
*/
|
||||
public IllegalOperationException() {
|
||||
super();
|
||||
}//IllegalOperationException()//
|
||||
/**
|
||||
* IllegalOperationException constructor.
|
||||
* @param description String The exception description.
|
||||
*/
|
||||
public IllegalOperationException(String description) {
|
||||
super(description);
|
||||
}//IllegalOperationException()//
|
||||
}//IllegalOperationException//
|
||||
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright (c) 1999,2005 Declarative Engineering LLC.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Declarative Engineering LLC
|
||||
* verson 1 which accompanies this distribution, and is available at
|
||||
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||||
*/
|
||||
package com.common.exception;
|
||||
|
||||
/**
|
||||
* Thrown when a method has determined that one of its' arguments has an invalid or unexpected value.
|
||||
*/
|
||||
public class InvalidArgumentException extends CommonRuntimeException {
|
||||
/**
|
||||
* InvalidArgumentException constructor.
|
||||
*/
|
||||
public InvalidArgumentException() {
|
||||
super();
|
||||
}//InvalidArgumentException()//
|
||||
/**
|
||||
* InvalidArgumentException constructor.
|
||||
* @param description String The exception description.
|
||||
*/
|
||||
public InvalidArgumentException(String description) {
|
||||
super(description);
|
||||
}//InvalidArgumentException()//
|
||||
}//InvalidArgumentException//
|
||||
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright (c) 1999,2005 Declarative Engineering LLC.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Declarative Engineering LLC
|
||||
* verson 1 which accompanies this distribution, and is available at
|
||||
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||||
*/
|
||||
package com.common.exception;
|
||||
|
||||
/**
|
||||
* Thrown when a method that the user called is not being supported at all or under some circumstances.
|
||||
*/
|
||||
public class MethodNotSupportedException extends CommonRuntimeException {
|
||||
/**
|
||||
* MethodNotSupportedException constructor.
|
||||
*/
|
||||
public MethodNotSupportedException() {
|
||||
super();
|
||||
}//MethodNotSupportedException()//
|
||||
/**
|
||||
* MethodNotSupportedException constructor.
|
||||
* @param description The exception description.
|
||||
*/
|
||||
public MethodNotSupportedException(String description) {
|
||||
super(description);
|
||||
}//MethodNotSupportedException()//
|
||||
}//MethodNotSupportedException//
|
||||
24
Common/src/com/common/exception/ThreadException.java
Normal file
24
Common/src/com/common/exception/ThreadException.java
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright (c) 1999,2005 Declarative Engineering LLC.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Declarative Engineering LLC
|
||||
* verson 1 which accompanies this distribution, and is available at
|
||||
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||||
*/
|
||||
package com.common.exception;
|
||||
|
||||
public class ThreadException extends CommonRuntimeException {
|
||||
/**
|
||||
* ThreadException constructor.
|
||||
*/
|
||||
public ThreadException() {
|
||||
super();
|
||||
}//ThreadException()//
|
||||
/**
|
||||
* ThreadException constructor.
|
||||
* @param description String The exception description.
|
||||
*/
|
||||
public ThreadException(String description) {
|
||||
super(description);
|
||||
}//ThreadException()//
|
||||
}//ThreadException//
|
||||
Reference in New Issue
Block a user