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

com.github.sinjar.common.lang.WrongBranchException Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.github.sinjar.common.lang;

/**
 * Description :  错误分支异常, 用于分支控制时执行到不该执行的分支时抛出
 *
 * @author CPF
 * Date: 2020/3/24 16:20
 */
public class WrongBranchException extends RuntimeException {

    public WrongBranchException() {
        super();
    }

    public WrongBranchException(String message) {
        super(message);
    }

    public WrongBranchException(String message, Throwable cause) {
        super(message, cause);
    }

    public WrongBranchException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy