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

org.nofdev.topic.TopicException.groovy Maven / Gradle / Ivy

There is a newer version: 1.7.6
Show newest version
package org.nofdev.topic

import org.nofdev.servicefacade.UnhandledException

/**
 * Created by LTF on 2017/5/3 0003.
 */
class TopicException extends UnhandledException{
    TopicException() {
    }

    TopicException(String message) {
        super(message)
    }

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

    TopicException(Throwable cause) {
        super(cause)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy