package com.qianwen.core.tenant.exception;
|
|
|
public class TenantDataSourceException extends RuntimeException {
|
public TenantDataSourceException(String message) {
|
super(message);
|
}
|
|
@Override // java.lang.Throwable
|
public Throwable fillInStackTrace() {
|
return this;
|
}
|
|
public Throwable doFillInStackTrace() {
|
return super.fillInStackTrace();
|
}
|
}
|