![JAR search and dependency download from the Maven repository](/logo.png)
net.kencochrane.raven.dsn.InvalidDsnException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of raven Show documentation
Show all versions of raven Show documentation
Sentry client written in Java.
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