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

com.servicerocket.confluence.randombits.conveyor.ConveyorException Maven / Gradle / Ivy

There is a newer version: 2.5.12
Show newest version
package com.servicerocket.confluence.randombits.conveyor;

public class ConveyorException extends Exception {

    public ConveyorException() {
    }

    public ConveyorException( String message ) {
        super( message );
    }

    public ConveyorException( Throwable exception ) {
        super( exception );
    }

    public ConveyorException( String message, Throwable exception ) {
        super( message, exception );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy