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

org.nofdev.exception.BatchException.groovy Maven / Gradle / Ivy

The newest version!
package org.nofdev.exception

import org.nofdev.servicefacade.AbstractBusinessException

class BatchException extends AbstractBusinessException {
    static String DEFAULT_EXCEPTION_MESSAGE = "批处理异常"

    BatchException() {
        super(DEFAULT_EXCEPTION_MESSAGE)
    }

    BatchException(String message) {
        super(message)
    }

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

    BatchException(Throwable cause) {
        super(cause)
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy