1 package org.tigris.scarab.reports; 2 3 48 49 import org.tigris.scarab.tools.localization.L10NMessage; 50 import org.tigris.scarab.tools.localization.LocalizationKey; 51 import org.tigris.scarab.util.ScarabException; 52 53 57 public class IncompatibleMITListException 58 extends ScarabException 59 { 60 61 67 public IncompatibleMITListException(LocalizationKey l10nKey) 68 { 69 super(l10nKey); 70 } 71 72 78 public IncompatibleMITListException(L10NMessage l10nMessage) 79 { 80 super(l10nMessage); 81 } 82 83 90 public IncompatibleMITListException(L10NMessage l10nMessage, Throwable nested) 91 { 92 super(l10nMessage, nested); 93 } 94 95 101 public IncompatibleMITListException(LocalizationKey theKey, Object [] theParams) 102 { 103 super(theKey, theParams); 104 } 105 106 113 public IncompatibleMITListException(LocalizationKey theKey, Throwable nested, Object [] theParams) 114 { 115 super(theKey, nested, theParams); 116 } 117 } 118 | Popular Tags |