kz.greetgo.security.crypto.errors.UnsupportedDb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.security Show documentation
Show all versions of greetgo.security Show documentation
Security infrastructure used in greetgo!
package kz.greetgo.security.crypto.errors;
import kz.greetgo.db.DbType;
public class UnsupportedDb extends RuntimeException {
public UnsupportedDb(DbType dbType) {
super("db type = " + dbType);
}
}