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