Example usage for org.apache.cassandra.exceptions AuthenticationException AuthenticationException

List of usage examples for org.apache.cassandra.exceptions AuthenticationException AuthenticationException

Introduction

In this page you can find the example usage for org.apache.cassandra.exceptions AuthenticationException AuthenticationException.

Prototype

public AuthenticationException(String msg) 

Source Link

Usage

From source file:org.wso2.carbon.cassandra.server.CarbonCassandraAuthenticator.java

License:Apache License

private void logAndAuthenticationException(String msg) throws AuthenticationException {
    log.error(msg);/*w ww  . java  2  s  . c o  m*/
    throw new AuthenticationException(msg);
}