X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=netconf-server%2Fsrc%2Fmain%2Fjava%2Forg%2Fcommscope%2Ftr069adapter%2Fnetconf%2Ferror%2FNetconfNotificationException.java;fp=netconf-server%2Fsrc%2Fmain%2Fjava%2Forg%2Fcommscope%2Ftr069adapter%2Fnetconf%2Ferror%2FNetconfNotificationException.java;h=c3c54ab0001163b6c1d12b4f88db87df2dcc4ea9;hb=ce4e2d38e3d42725f61c39dd172325d2def4bc44;hp=0000000000000000000000000000000000000000;hpb=597b7c7a33b3f636263fd7297e3d257eb6b56175;p=oam%2Ftr069-adapter.git diff --git a/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/error/NetconfNotificationException.java b/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/error/NetconfNotificationException.java new file mode 100644 index 0000000..c3c54ab --- /dev/null +++ b/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/error/NetconfNotificationException.java @@ -0,0 +1,31 @@ +/* + * ============LICENSE_START======================================================================== + * ONAP : tr-069-adapter + * ================================================================================================= + * Copyright (C) 2020 CommScope Inc Intellectual Property. + * ================================================================================================= + * This tr-069-adapter software file is distributed by CommScope Inc 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 + * + * This file 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.commscope.tr069adapter.netconf.error; + +public class NetconfNotificationException extends Exception { + private static final long serialVersionUID = -7152022827444291350L; + + public NetconfNotificationException(String message) { + super(message); + } + + public NetconfNotificationException(String message, Throwable cause) { + super(message, cause); + } +}