1 21 package org.apache.webdav.ant; 22 23 import org.apache.tools.ant.BuildException; 24 25 30 31 public class ScanException extends BuildException { 32 33 public ScanException() { 34 super(); 35 } 36 37 41 42 public ScanException(String msg) { 43 super(msg); 44 } 45 46 52 53 public ScanException(String msg, Throwable cause) { 54 super(msg, cause); 55 } 56 } 57 | Popular Tags |