diff options
author | Sébastien Determe <sebastien.determe@intl.att.com> | 2020-02-10 17:31:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-10 17:31:11 +0000 |
commit | 2edce92732cfd5513c6bd9665ac808c4ecce85dc (patch) | |
tree | 6541df754fcfc802a1ca4dfbdc7816466767201b /src/main | |
parent | ea9dffa287e24947edead2c96cb29de3528082c8 (diff) | |
parent | 20a69414489282f28abec06beea8b4278bbc0806 (diff) |
Merge "Removal of useless files"
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/onap/clamp/clds/exception/BadRequestException.java | 61 | ||||
-rw-r--r-- | src/main/java/org/onap/clamp/exception/OperationException.java | 61 |
2 files changed, 0 insertions, 122 deletions
diff --git a/src/main/java/org/onap/clamp/clds/exception/BadRequestException.java b/src/main/java/org/onap/clamp/clds/exception/BadRequestException.java deleted file mode 100644 index caf525eee..000000000 --- a/src/main/java/org/onap/clamp/clds/exception/BadRequestException.java +++ /dev/null @@ -1,61 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * ONAP CLAMP - * ================================================================================ - * Copyright (C) 2018 AT&T Intellectual Property. All rights - * reserved. - * ================================================================================ - * 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. - * ============LICENSE_END============================================ - * =================================================================== - * - */ - -package org.onap.clamp.clds.exception; - -/** - * New exception to request errors. - * - */ -public class BadRequestException extends RuntimeException { - - /** - * The serial version ID. - */ - private static final long serialVersionUID = -5738167530541646123L; - - /** - * This constructor can be used to create a new CldsConfigException. - * - * @param message - * A string message detailing the problem - * @param ex - * The exception sent by the code - */ - public BadRequestException(String message, Throwable ex) { - super(message, ex); - } - - /** - * This constructor can be used to create a new CldsConfigException. Use this - * constructor only if you are creating a new exception stack, not if an - * exception was already raised by another code. - * - * @param message - * A string message detailing the problem - */ - public BadRequestException(String message) { - super(message); - } - -} diff --git a/src/main/java/org/onap/clamp/exception/OperationException.java b/src/main/java/org/onap/clamp/exception/OperationException.java deleted file mode 100644 index 6e26d294c..000000000 --- a/src/main/java/org/onap/clamp/exception/OperationException.java +++ /dev/null @@ -1,61 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * ONAP CLAMP - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights - * reserved. - * ================================================================================ - * 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. - * ============LICENSE_END============================================ - * =================================================================== - * - */ - -package org.onap.clamp.exception; - -/** - * New exception to CldsUser errors. - * - */ -public class OperationException extends RuntimeException { - - /** - * The serial version ID. - */ - private static final long serialVersionUID = 2788967876393519620L; - - /** - * This constructor can be used to create a new CldsUsersException. - * - * @param message - * A string message detailing the problem - * @param cause - * The exception sent by the code - */ - public OperationException(String message, Throwable cause) { - super(message, cause); - } - - /** - * This constructor can be used to create a new CldsUsersException. Use this - * constructor only if you are creating a new exception stack, not if an - * exception was already raised by another code. - * - * @param message - * A string message detailing the problem - */ - public OperationException(String message) { - super(message); - } - -} |