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

org.voovan.http.server.exception.AnnotationRouterException Maven / Gradle / Ivy

package org.voovan.http.server.exception;

/**
 * 注解路由异常
 *
 * @author: helyho
 * Voovan Framework.
 * WebSite: https://github.com/helyho/Voovan
 * Licence: Apache v2 License
 */
public class AnnotationRouterException  extends Exception {
    public AnnotationRouterException(String message) {
        super(message);
    }

    public AnnotationRouterException(String description, Exception e){
        super(description + "\r\n"+ e.getClass().getName()+ ": " + e.getMessage());
        this.setStackTrace(e.getStackTrace());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy