net.snowflake.client.jdbc.SnowflakeReauthenticationRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2012-2019 Snowflake Computing Inc. All rights reserved.
*/
package net.snowflake.client.jdbc;
/** SnowflakeReauthenticationRequest signals the reauthentication used for SSO */
public class SnowflakeReauthenticationRequest extends SnowflakeSQLException {
private static final long serialVersionUID = 1L;
public SnowflakeReauthenticationRequest(
String queryId, String reason, String sqlState, int vendorCode) {
super(queryId, reason, sqlState, vendorCode);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy