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

net.lulihu.designPattern.chain.ChainDisconnectedException Maven / Gradle / Ivy

package net.lulihu.designPattern.chain;

import net.lulihu.ObjectKit.StrKit;

/**
 * 链条断开异常
 */
public class ChainDisconnectedException extends Exception {

    public ChainDisconnectedException() {
        super();
    }

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

    public ChainDisconnectedException(String message, Object... objs) {
        this(StrKit.format(message, objs));
    }


    public ChainDisconnectedException(Throwable tx, String message) {
        super(message, tx);
    }

    public ChainDisconnectedException(Throwable tx, String message, Object... objs) {
        this(StrKit.format(message, objs), tx);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy