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

com.github.antelopeframework.mybatis.shard.ShardException Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
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