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

com.bbn.bue.common.converters.ConversionException Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package com.bbn.bue.common.converters;

public class ConversionException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public ConversionException(String msg) {
    super(msg);
  }

  public ConversionException(String msg, Throwable cause) {
    super(msg, cause);
  }

  public ConversionException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy