blob: 96f6ba8494244633a70c01adfcb21254d5ac34dd [file] [log] [blame]
package org.apache.shardingsphere.elasticjob.lite.ui.exception;
/**
* Driver class not in whitelist exception.
*/
public final class DriverClassNotInWhitelistException extends RuntimeException {
public DriverClassNotInWhitelistException(final String driverClass) {
super("Please add '" + driverClass + "' to [dynamic.datasource.allowed-driver-classes] in application.properties");
}
}