blob: 0b118d6de30dc5aabd1cbae66d526d4091e02c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
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);
}
}
|