diff options
author | Ingo Bauersachs <ingo@jitsi.org> | 2016-05-28 21:04:09 +0200 |
---|---|---|
committer | Ingo Bauersachs <ingo@jitsi.org> | 2016-05-28 21:04:09 +0200 |
commit | 91ce10758cd2ebbad5a2e041609dc46d48495964 (patch) | |
tree | 10d9eae0a6c9384da918b9fe3ae08284330ea26b /src/net/java/sip/communicator/impl/dns/UnboundException.java | |
parent | f9c01af00ba28550324b27769cb901e222b8c2cf (diff) | |
download | jitsi-91ce10758cd2ebbad5a2e041609dc46d48495964.zip jitsi-91ce10758cd2ebbad5a2e041609dc46d48495964.tar.gz jitsi-91ce10758cd2ebbad5a2e041609dc46d48495964.tar.bz2 |
Remove libunbound and related code
Diffstat (limited to 'src/net/java/sip/communicator/impl/dns/UnboundException.java')
-rw-r--r-- | src/net/java/sip/communicator/impl/dns/UnboundException.java | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/net/java/sip/communicator/impl/dns/UnboundException.java b/src/net/java/sip/communicator/impl/dns/UnboundException.java deleted file mode 100644 index a27a607..0000000 --- a/src/net/java/sip/communicator/impl/dns/UnboundException.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Jitsi, the OpenSource Java VoIP and Instant Messaging client. - * - * Copyright @ 2015 Atlassian Pty Ltd - * - * 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 net.java.sip.communicator.impl.dns; - -/** - * Exception that is being thrown when native Unbound code resulted in an error. - * - * @author Ingo Bauersachs - */ -public class UnboundException - extends Exception -{ - /** - * Serial version UID. - */ - private static final long serialVersionUID = 0L; - - /** - * Creates a new instance of this class. - * - * @param message the detail message. - */ - public UnboundException(String message) - { - super(message); - } -} |