com.github.andyshao.lang.NotSupportConvertException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.lang;
import java.io.Serial;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Aug 8, 2018
* Encoding:UNIX UTF-8
* @author Andy.Shao
*
*/
public class NotSupportConvertException extends RuntimeException {
@Serial
private static final long serialVersionUID = 3695473346997477861L;
/**
* With error message
* @param message error message
*/
public NotSupportConvertException(String message) {
super(message);
}
/**
* with previous exception
* @param ex previous exception
*/
public NotSupportConvertException(Throwable ex) {
super(ex);
}
/**
* with error message and previous exception
* @param message the error message
* @param ex the previous exception
*/
public NotSupportConvertException(String message, Throwable ex) {
super(message, ex);
}
/**
* No arg construction
*/
public NotSupportConvertException() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy