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

com.aeontronix.enhancedmule.tools.anypoint.api.SLATierNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2019
 */

package com.aeontronix.enhancedmule.tools.anypoint.api;

import com.aeontronix.enhancedmule.tools.anypoint.NotFoundException;

public class SLATierNotFoundException extends NotFoundException {
    public SLATierNotFoundException() {
    }

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

    public SLATierNotFoundException(String message, Throwable cause) {
        super(message, cause);
    }

    public SLATierNotFoundException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy