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

org.molgenis.data.MolgenisDataException Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.data;

import org.molgenis.util.exception.CodedRuntimeException;
import org.springframework.dao.DataAccessException;

/** @deprecated use class that extends from {@link CodedRuntimeException} */
@Deprecated
public class MolgenisDataException extends DataAccessException {
  private static final long serialVersionUID = 4738825795930038340L;

  public MolgenisDataException() {
    this("");
  }

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

  public MolgenisDataException(Throwable t) {
    this("", t);
  }

  public MolgenisDataException(String msg, Throwable t) {
    super(msg, t);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy