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

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

There is a newer version: 3.8.9
Show newest version
package com.eurodyn.qlack.common.exception;

/**
 * A generic exception representing an "mismatch" condition.
 *
 * @author European Dynamics SA
 */
public class QMismatchException extends QException {

  public QMismatchException() {
    super();
  }

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

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

  public QMismatchException(String message, Object... args) {
    super(message, args);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy