diff options
Diffstat (limited to 'src/net/java/sip/communicator/service/dns/DnssecRuntimeException.java')
-rw-r--r-- | src/net/java/sip/communicator/service/dns/DnssecRuntimeException.java | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/src/net/java/sip/communicator/service/dns/DnssecRuntimeException.java b/src/net/java/sip/communicator/service/dns/DnssecRuntimeException.java index 192f9e4..cd948b4 100644 --- a/src/net/java/sip/communicator/service/dns/DnssecRuntimeException.java +++ b/src/net/java/sip/communicator/service/dns/DnssecRuntimeException.java @@ -1,4 +1,4 @@ -/*
+/* * Jitsi, the OpenSource Java VoIP and Instant Messaging client. * * Copyright @ 2015 Atlassian Pty Ltd @@ -15,32 +15,32 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package net.java.sip.communicator.service.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);
- }
-}
+package net.java.sip.communicator.service.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); + } +} |