Initial commit from SVN.

This commit is contained in:
wcrisman
2014-05-30 10:31:51 -07:00
commit b45e56b890
1968 changed files with 370949 additions and 0 deletions

View 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//

View 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//

View 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//

View 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 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//

View File

@@ -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//

View File

@@ -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//

View 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//