XlsMapperException.java

  1. package com.gh.mygreen.xlsmapper;


  2. /**
  3.  * XlsMapperの基の本例外クラス。
  4.  *
  5.  * @author T.TSUCHIE
  6.  *
  7.  */
  8. public class XlsMapperException extends RuntimeException {

  9.     /** serialVersionUID */
  10.     private static final long serialVersionUID = -5739922099089739224L;

  11.     public XlsMapperException() {
  12.     }

  13.     public XlsMapperException(final String message, final Throwable cause) {
  14.         super(message, cause);
  15.     }

  16.     public XlsMapperException(final String message) {
  17.         super(message);
  18.     }

  19.     public XlsMapperException(final Throwable cause) {
  20.         super(cause);
  21.     }
  22. }