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

org.unidal.converter.ConverterException Maven / Gradle / Ivy

The newest version!
package org.unidal.converter;

public class ConverterException extends RuntimeException {
   private static final long serialVersionUID = 7967709318556423946L;

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

   public ConverterException(String message, Throwable cause) {
      super(message, cause);
   }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy