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

com.fastchar.exception.FastWebException Maven / Gradle / Ivy

package com.fastchar.exception;

import com.fastchar.core.FastRequestLog;

import javax.servlet.ServletException;

public class FastWebException  extends ServletException {
    public FastWebException(String message) {
        super(message);
    }
    public FastWebException(Throwable rootCause) {
        super(rootCause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy