1 17 package org.apache.ws.jaxme.impl; 18 19 import javax.xml.bind.ValidationEventLocator; 20 21 25 public class ValidationEventImpl extends javax.xml.bind.helpers.ValidationEventImpl { 26 private String errorCode; 27 28 31 public ValidationEventImpl(int pSeverity, String pMessage, 32 ValidationEventLocator pLocator) { 33 super(pSeverity, pMessage, pLocator); 34 } 35 38 public ValidationEventImpl(int pSeverity, String pMessage, 39 ValidationEventLocator pLocator, 40 Throwable pLinkedException) { 41 super(pSeverity, pMessage, pLocator, pLinkedException); 42 } 43 44 46 public void setErrorCode(String pErrorCode) { 47 errorCode = pErrorCode; 48 } 49 51 public String getErrorCode() { 52 return errorCode; 53 } 54 } 55 | Popular Tags |