XmlOperateException.java

  1. package com.gh.mygreen.xlsmapper.xml;

  2. import com.gh.mygreen.xlsmapper.XlsMapperException;

  3. /**
  4.  * XMLを操作する際に発生する例外。
  5.  *
  6.  * @author T.TSUCHIE
  7.  *
  8.  */
  9. public class XmlOperateException extends XlsMapperException {

  10.     private static final long serialVersionUID = 4762483379595821097L;
  11.    
  12.     public XmlOperateException() {
  13.         super();
  14.     }
  15.    
  16.     public XmlOperateException(final String message, final Throwable cause) {
  17.         super(message, cause);
  18.     }
  19.    
  20.     public XmlOperateException(final String message) {
  21.         super(message);
  22.     }
  23.    
  24.     public XmlOperateException(final Throwable cause) {
  25.         super(cause);
  26.     }

  27. }