com.github.antelopeframework.mybatis.shard.ShardException Maven / Gradle / Ivy
package com.github.antelopeframework.mybatis.shard;
public class ShardException extends Exception {
private static final long serialVersionUID = 1793760050084714190L;
public ShardException() {
}
public ShardException(String msg) {
super(msg);
}
public ShardException(String msg, Throwable t) {
super(msg, t);
}
public ShardException(Throwable t) {
super(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy