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

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

There is a newer version: 2.2.2
Show newest version
package com.fastchar.exception;

import javax.servlet.ServletException;

public class FastWebException  extends ServletException {
    private static final long serialVersionUID = 6685331861357178775L;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy