com.atlan.exception.LogicException Maven / Gradle / Ivy
/* SPDX-License-Identifier: Apache-2.0
Copyright 2022 Atlan Pte. Ltd. */
package com.atlan.exception;
/**
* Error that occurs when an unexpected logic problem arises. If these are ever experienced, they should be
* immediately reported against the SDK as bugs.
*/
public class LogicException extends AtlanException {
private static final long serialVersionUID = 2L;
public LogicException(ErrorCode error, Throwable e) {
super(error, e);
}
public LogicException(ErrorCode error, Throwable e, String... params) {
super(error, e, params);
}
public LogicException(ErrorCode error, String... params) {
super(error, null, params);
}
}