1 19 20 package org.netbeans.modules.xml.xam.ui.search; 21 22 27 public class SearchException extends Exception { 28 29 private static final long serialVersionUID = 1L; 30 31 34 public SearchException() { 35 } 36 37 42 public SearchException(String message) { 43 super(message); 44 } 45 46 52 public SearchException(String message, Throwable cause) { 53 super(message, cause); 54 } 55 56 61 public SearchException(Throwable cause) { 62 super(cause); 63 } 64 } 65 | Popular Tags |