![JAR search and dependency download from the Maven repository](/logo.png)
com.github.andyshao.distribution.group.GroupManageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.distribution.group;
import java.io.Serial;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Mar 29, 2018
* Encoding: UNIX UTF-8
* @author weichuang.shao
*
*/
public class GroupManageException extends RuntimeException{
@Serial
private static final long serialVersionUID = 1937796700421894498L;
/**
* With error message
* @param message error message
*/
public GroupManageException(String message) {
super(message);
}
/**
* With error message and previous exception
* @param message error message
* @param exception previous exception
*/
public GroupManageException(String message, Throwable exception) {
super(message, exception);
}
/**
* With previous exception
* @param exception previous exception
*/
public GroupManageException(Throwable exception) {
super(exception);
}
/**
* No arg construction
*/
public GroupManageException() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy