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

com.neko233.toolchain.actor.ActorBindException Maven / Gradle / Ivy

package com.neko233.toolchain.actor;

/**
 * Actor 绑定异常
 *
 * @author SolarisNeko on 2023-02-05
 **/
public class ActorBindException extends Exception {

    public ActorBindException(String msg) {
        super(msg);
    }

    public ActorBindException(String msg, Exception e) {
        super(msg, e);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy