aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/a1pesimulator/exception/NotUploadedToFtpException.java
diff options
context:
space:
mode:
authorStanislav Marszalek <s.marszalek2@partner.samsung.com>2021-07-09 13:41:45 +0200
committerStanislav Marszalek <s.marszalek2@partner.samsung.com>2021-07-28 14:18:55 +0200
commit4ffe10537b208ee7ec6317e3592c398730a3ee8e (patch)
tree5821705bd878f226a39d159c81a48f0d2f15d106 /src/main/java/org/onap/a1pesimulator/exception/NotUploadedToFtpException.java
parent1599a5c6fed7698912a1968df24cf22d1a286222 (diff)
O1 PM Bulk support - upload PM Bulk File to FTP
Issue-ID: INT-1945 Signed-off-by: Stanislav Marszalek <s.marszalek2@partner.samsung.com> Change-Id: If08908035719798d8d7b129ddcdb6ef62f1647fe
Diffstat (limited to 'src/main/java/org/onap/a1pesimulator/exception/NotUploadedToFtpException.java')
-rw-r--r--src/main/java/org/onap/a1pesimulator/exception/NotUploadedToFtpException.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/org/onap/a1pesimulator/exception/NotUploadedToFtpException.java b/src/main/java/org/onap/a1pesimulator/exception/NotUploadedToFtpException.java
new file mode 100644
index 0000000..55f1d5d
--- /dev/null
+++ b/src/main/java/org/onap/a1pesimulator/exception/NotUploadedToFtpException.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * 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.onap.a1pesimulator.exception;
+
+/**
+ * Thrown from FTPServerService in upload process
+ */
+public class NotUploadedToFtpException extends Exception {
+
+ public NotUploadedToFtpException(String errorMessage) {
+ super(errorMessage);
+ }
+
+ public NotUploadedToFtpException(String errorMessage, Exception e) {
+ super(errorMessage, e);
+ }
+}