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

com.ooftf.spy.plugin.SpyException.groovy Maven / Gradle / Ivy

package com.ooftf.spy.plugin

class SpyException extends RuntimeException {
    SpyException() {
    }

    SpyException(String message) {
        super(message)
    }

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

    SpyException(Throwable cause) {
        super(cause)
    }

    SpyException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy