cc.youchain.exceptions.MessageDecodingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
YOUChain Common library in JAVA.
The newest version!
package cc.youchain.exceptions;
/**
* Encoding exception.
*/
public class MessageDecodingException extends RuntimeException {
public MessageDecodingException(String message) {
super(message);
}
public MessageDecodingException(String message, Throwable cause) {
super(message, cause);
}
}