1 package org.tigris.scarab.util.word; 2 3 48 49 import org.tigris.scarab.tools.localization.Localizable; 50 import org.tigris.scarab.tools.localization.LocalizationKey; 51 import org.tigris.scarab.util.ScarabException; 52 53 61 public class MaxConcurrentSearchException extends ScarabException 62 { 63 69 public MaxConcurrentSearchException(LocalizationKey l10nKey) 70 { 71 super(l10nKey); 72 } 73 74 80 public MaxConcurrentSearchException(Localizable l10nMessage) 81 { 82 super(l10nMessage); 83 } 84 85 91 public MaxConcurrentSearchException(Localizable l10nMessage, Throwable nested) 92 { 93 super(l10nMessage, nested); 94 } 95 96 101 public MaxConcurrentSearchException(LocalizationKey theKey, Object [] theParams) 102 { 103 super(theKey, theParams); 104 } 105 106 111 public MaxConcurrentSearchException(LocalizationKey theKey, Object p1) 112 { 113 this(theKey, new Object [] {p1}); 114 } 115 116 121 public MaxConcurrentSearchException(LocalizationKey theKey, Object p1, Object p2) 122 { 123 this(theKey, new Object [] {p1, p2}); 124 } 125 126 131 public MaxConcurrentSearchException(LocalizationKey theKey, Object p1, Object p2, Object p3) 132 { 133 this(theKey, new Object [] {p1, p2, p3}); 134 } 135 136 137 142 public MaxConcurrentSearchException(LocalizationKey theKey, Throwable nested, Object [] theParams) 143 { 144 super(theKey, nested, theParams); 145 } 146 } 147 | Popular Tags |