org.nofdev.topic.TopicException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-topic-consumer Show documentation
Show all versions of service-topic-consumer Show documentation
The basic componet of Nofdev Topic framework
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)
}
}