All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.snowflake.client.core.SFException Maven / Gradle / Ivy

There is a newer version: 3.18.0
Show newest version
/*
 * Copyright (c) 2012-2018 Snowflake Computing Inc. All rights reserved.
 */

package net.snowflake.client.core;

import net.snowflake.client.jdbc.ErrorCode;
import net.snowflake.common.core.ResourceBundleManager;

import net.snowflake.client.log.SFLogger;
import net.snowflake.client.log.SFLoggerFactory;
/**
 * Created by jhuang on 1/5/16.
 */
public class SFException extends Throwable
{
  static final SFLogger logger = SFLoggerFactory.getLogger(SFException.class);

  static final ResourceBundleManager errorResourceBundleManager =
      ResourceBundleManager.getSingleton(ErrorCode.errorMessageResource);

  private Throwable cause;
  private String queryId;
  private String sqlState;
  private int vendorCode;
  private Object[] params;

  public SFException(ErrorCode errorCode,
                     Object... params)
  {
    super(errorResourceBundleManager.getLocalizedMessage(
        String.valueOf(errorCode.getMessageCode()), params));

    this.cause = null;
    this.queryId = null;
    this.sqlState = errorCode.getSqlState();
    this.vendorCode = errorCode.getMessageCode();
    this.params = params;
  }

  public SFException(Throwable cause,
                     ErrorCode errorCode,
                     Object... params)
  {
    super(errorResourceBundleManager.getLocalizedMessage(
        String.valueOf(errorCode.getMessageCode()), params), cause);

    this.cause = null;
    this.queryId = null;
    this.sqlState = errorCode.getSqlState();
    this.vendorCode = errorCode.getMessageCode();
    this.params = params;
  }

  public Throwable getCause()
  {
    return cause;
  }

  public String getQueryId()
  {
    return queryId;
  }

  public String getSqlState()
  {
    return sqlState;
  }

  public int getVendorCode()
  {
    return vendorCode;
  }

  public Object[] getParams()
  {
    return params;
  }

  @Override
  public String toString()
  {
    return super.toString() +
        (getQueryId() != null ? ", query id = " + getQueryId() : "") +
        (getSqlState() != null ? ", sql state = " + getSqlState() : "");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy