View Javadoc

1   /***
2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3   */
4   package net.sourceforge.pmd.cpd;
5   
6   /***
7    * @author  Philippe T'Seyen
8    */
9   public class ReportException extends Exception {
10  
11      private Throwable cause;
12  
13    public ReportException(Throwable cause) {
14      super();
15        this.cause = cause;
16    }
17  }