com.vesoft.nebula.driver.graph.exception.AuthFailedException Maven / Gradle / Ivy
The newest version!
package com.vesoft.nebula.driver.graph.exception;
/**
*
*/
public class AuthFailedException extends Exception {
public AuthFailedException(String message) {
super(String.format("Auth failed: %s", message));
}
}