All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.kencochrane.raven.dsn.InvalidDsnException Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package net.kencochrane.raven.dsn;

/**
 * Exception thrown whenever the given {@link Dsn} as been detected as invalid.
 * 

* The invalidity of the DSN can either be due on the content of the DSN (invalid or missing parameters) or the sentry * server issuing an authentication error. */ public class InvalidDsnException extends RuntimeException { //CHECKSTYLE.OFF: JavadocMethod public InvalidDsnException() { } public InvalidDsnException(String message) { super(message); } public InvalidDsnException(String message, Throwable cause) { super(message, cause); } public InvalidDsnException(Throwable cause) { super(cause); } //CHECKSTYLE.ON: JavadocMethod }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy