// marshaller understands.
String errorCode = parseErrorCode(node);
if (errorCode == null || !errorCode.equals("BaseException"))
return null;
BaseException e = (BaseException)super.unmarshall(node);
e.setCode(XpathUtils.asString(getErrorPropertyPath("Code"), node));
return e;
}