1 5 6 package javax.xml.bind.helpers; 7 8 import javax.xml.bind.ParseConversionEvent; 9 import javax.xml.bind.ValidationEventLocator; 10 11 28 public class ParseConversionEventImpl 29 extends ValidationEventImpl 30 implements ParseConversionEvent { 31 32 42 public ParseConversionEventImpl( int _severity, String _message, 43 ValidationEventLocator _locator) { 44 45 super(_severity, _message, _locator); 46 } 47 48 60 public ParseConversionEventImpl( int _severity, String _message, 61 ValidationEventLocator _locator, 62 Throwable _linkedException) { 63 64 super(_severity, _message, _locator, _linkedException); 65 } 66 67 } 68 | Popular Tags |