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

com.clinia.exceptions.CliniaRuntimeException Maven / Gradle / Ivy

package com.clinia.exceptions;

/** Exception thrown when an error occurs during the Serialization/Deserialization process */
public class CliniaRuntimeException extends RuntimeException {

  private static final long serialVersionUID = 1L;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy