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

com.dahuatech.hutool.core.convert.ConvertException Maven / Gradle / Ivy

There is a newer version: 1.0.13.10
Show newest version
package com.dahuatech.hutool.core.convert;

import com.dahuatech.hutool.core.exceptions.ExceptionUtil;
import com.dahuatech.hutool.core.util.StrUtil;

/**
 * 转换异常
 *
 * @author xiaoleilu
 */
public class ConvertException extends RuntimeException {
  private static final long serialVersionUID = 4730597402855274362L;

  public ConvertException(Throwable e) {
    super(ExceptionUtil.getMessage(e), e);
  }

  public ConvertException(String message) {
    super(message);
  }

  public ConvertException(String messageTemplate, Object... params) {
    super(StrUtil.format(messageTemplate, params));
  }

  public ConvertException(String message, Throwable throwable) {
    super(message, throwable);
  }

  public ConvertException(Throwable throwable, String messageTemplate, Object... params) {
    super(StrUtil.format(messageTemplate, params), throwable);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy