package io.delphi.qa.auto.awsmfrw.common_baby.exceptions;

import java.util.function.Supplier;

public class ReportNotFoundException extends RuntimeException implements Supplier<ReportNotFoundException> {

  private static final long serialVersionUID = -9177857708926624790L;
  private String msg;

  public ReportNotFoundException() {
    super();
  }

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

  @Override public ReportNotFoundException get() {
    return this;
  }
}
