krysalis-update/src/java/org/krysalis/depot/common DepotError.java,NONE,1.1 DepotRuntimeException.java,NONE,1.1 DepotException.java,NONE,1.1
Nick Chalko <[email protected]> Wed, 08 Dec 2004 09:06:42 +0000
| Newsgroups | gmane.comp.krysalis.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/krysalis/krysalis-update/src/java/org/krysalis/depot/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24726/src/java/org/krysalis/depot/common
Added Files:
DepotError.java DepotRuntimeException.java DepotException.java
Log Message:
Copied from the apache incubator.
--- NEW FILE: DepotError.java ---
/*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.krysalis.depot.common;
import org.krysalis.depot.common.util.throwable.PortableError;
/**
* @author ajack
*/
public class DepotError extends PortableError {
/**
*
*/
public DepotError() {
super();
}
/**
* @param message
*/
public DepotError(String message) {
super(message);
}
/**
* @param message
* @param cause
*/
public DepotError(String message, Throwable cause) {
super(message, cause);
}
/**
* @param cause
*/
public DepotError(Throwable cause) {
super(cause);
}
}
--- NEW FILE: DepotException.java ---
/*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.krysalis.depot.common;
import org.krysalis.depot.common.util.throwable.PortableException;
/**
* @author ajack
*/
public class DepotException extends PortableException {
/**
*
*/
public DepotException() {
super();
}
/**
* @param message
*/
public DepotException(String message) {
super(message);
}
/**
* @param message
* @param cause
*/
public DepotException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param cause
*/
public DepotException(Throwable cause) {
super(cause);
}
}
--- NEW FILE: DepotRuntimeException.java ---
/*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.krysalis.depot.common;
import org.krysalis.depot.common.util.throwable.PortableRuntimeException;
/**
* @author ajack
*/
public class DepotRuntimeException extends PortableRuntimeException {
/**
*
*/
public DepotRuntimeException() {
super();
}
/**
* @param message
*/
public DepotRuntimeException(String message) {
super(message);
}
/**
* @param message
* @param cause
*/
public DepotRuntimeException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param cause
*/
public DepotRuntimeException(Throwable cause) {
super(cause);
}
}
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/