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

com.eurodyn.qlack.common.exception.QCouldNotSaveException Maven / Gradle / Ivy

The newest version!
package com.eurodyn.qlack.common.exception;

/**
 * A generic exception representing a "can not save the object" condition.
 *
 * @author European Dynamics SA
 */
public class QCouldNotSaveException extends QException {

  public QCouldNotSaveException() {
    super();
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy