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

org.redkale.convert.ConvertException Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package org.redkale.convert;

/**
 * 序列化自定义异常类
 *
 * 

* 详情见: https://redkale.org * * @author zhangjx */ public class ConvertException extends RuntimeException { public ConvertException() { super(); } public ConvertException(String s) { super(s); } public ConvertException(String message, Throwable cause) { super(message, cause); } public ConvertException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy