com.github.ncredinburgh.tomcat.DecryptionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secure-tomcat-datasourcefactory Show documentation
Show all versions of secure-tomcat-datasourcefactory Show documentation
A Tomcat DataSourceFactory that supports an encrypted password
package com.github.ncredinburgh.tomcat;
public class DecryptionException extends Exception {
public DecryptionException(Throwable t) {
super(t);
}
public DecryptionException(String message) {
super(message);
}
}