BrmoLeegBestandException.java

  1. /*
  2.  * Copyright (C) 2015 B3Partners B.V.
  3.  */
  4. package nl.b3p.brmo.loader.util;

  5. /**
  6.  * Specifieke exception voor een leeg bestand met berichten.
  7.  *
  8.  * @author mprins
  9.  */
  10. public class BrmoLeegBestandException extends BrmoException {

  11.   public BrmoLeegBestandException() {}

  12.   public BrmoLeegBestandException(String message) {
  13.     super(message);
  14.   }

  15.   public BrmoLeegBestandException(Throwable cause) {
  16.     super(cause);
  17.   }

  18.   public BrmoLeegBestandException(String message, Throwable cause) {
  19.     super(message, cause);
  20.   }
  21. }