blob: b06ba5b541655625fe77f7693cfc63c7100a6682 (
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
32
33
34
35
|
/*
* 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.plugin.desktoputil.dns;
import java.net.*;
/**
* Runtime exception that is thrown when a DNSSEC validation failure occurred.
* This is not a checked exception or a derivative of
* {@link UnknownHostException} so that existing code does not retry the lookup
* (potentially in a loop).
*
* @author Ingo Bauersachs
*/
public class DnssecRuntimeException
extends RuntimeException
{
/**
* Serial version UID.
*/
private static final long serialVersionUID = 0L;
/**
* Creates a new instance of this class.
* @param message The reason why this exception is thrown.
*/
public DnssecRuntimeException(String message)
{
super(message);
}
}
|