Example usage for java.sql SQLClientInfoException SQLClientInfoException

List of usage examples for java.sql SQLClientInfoException SQLClientInfoException

Introduction

In this page you can find the example usage for java.sql SQLClientInfoException SQLClientInfoException.

Prototype

public SQLClientInfoException(String reason, Map<String, ClientInfoStatus> failedProperties) 

Source Link

Document

Constructs a SQLClientInfoException object initialized with a given reason and failedProperties.

Usage

From source file:com.udps.hive.jdbc.HiveConnection.java

@Override
public void setClientInfo(Properties properties) throws SQLClientInfoException {
    // TODO Auto-generated method stub
    throw new SQLClientInfoException("Method not supported", null);
}

From source file:com.udps.hive.jdbc.HiveConnection.java

@Override
public void setClientInfo(String name, String value) throws SQLClientInfoException {
    // TODO Auto-generated method stub
    throw new SQLClientInfoException("Method not supported", null);
}