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

com.github.exception.ReportConfigException Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package com.github.exception;

import java.io.Serializable;

public class ReportConfigException extends RuntimeException implements Serializable {

  private static final long serialVersionUID = -3644742957748395150L;

  public ReportConfigException() {
    super();
  }

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

  /**
   * For wrapping up exception
   * 
   * @param message
   * @param cause
   */
  public ReportConfigException(String message, Throwable cause) {
    super(message, cause);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy