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

com.github.yingzhuo.fastdfs.springboot.domain.proto.mapper.FastDFSColumnMappingException Maven / Gradle / Ivy

The newest version!
package com.github.yingzhuo.fastdfs.springboot.domain.proto.mapper;

/**
 * 映射例外
 *
 * @author tobato
 */
public class FastDFSColumnMappingException extends RuntimeException {

    protected FastDFSColumnMappingException() {
    }

    protected FastDFSColumnMappingException(String message, Throwable cause, boolean enableSuppression,
                                            boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

    protected FastDFSColumnMappingException(String message, Throwable cause) {
        super(message, cause);
    }

    protected FastDFSColumnMappingException(String message) {
        super(message);
    }

    protected FastDFSColumnMappingException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy