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

org.nofdev.servicefacade.ServiceNotFoundException.groovy Maven / Gradle / Ivy

The newest version!
package org.nofdev.servicefacade
/**
 * Created by Qiang on 11/2/15.
 */
class ServiceNotFoundException extends AbstractBusinessException{
    static String DEFAULT_EXCEPTION_MESSAGE = "该服务不存在"

    ServiceNotFoundException() {
        super(DEFAULT_EXCEPTION_MESSAGE)
    }

    ServiceNotFoundException(String message) {
        super(message)
    }

    ServiceNotFoundException(String message, Throwable cause) {
        super(message, cause)
    }

    ServiceNotFoundException(Throwable cause) {
        super(cause)
    }

    ServiceNotFoundException(String message, Object datail) {
        super(message, datail)
    }

    ServiceNotFoundException(String message, Throwable cause, Object datail) {
        super(message, cause, datail)
    }

    ServiceNotFoundException(Throwable cause, Object datail) {
        super(cause, datail)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy