Update of /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr
In directory sc8-pr-cvs1:/tmp/cvs-serv11113/com/sun/xacml/attr
Modified Files:
AttributeFactory.java
Log Message:
cleaned up the formatting of some exception messages
Index: AttributeFactory.java
===================================================================
RCS file: /cvsroot/sunxacml/sunxacml/com/sun/xacml/attr/AttributeFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AttributeFactory.java 11 Aug 2003 20:48:44 -0000 1.2
--- AttributeFactory.java 29 Aug 2003 18:56:48 -0000 1.3
***************
*** 300,308 ****
} catch (Exception e) {
throw new ParsingException("couldn't create " + type +
! "attribute based on DOM node");
}
} else {
throw new UnknownIdentifierException("Attributes of type " + type +
! "aren't supported.");
}
}
--- 300,308 ----
} catch (Exception e) {
throw new ParsingException("couldn't create " + type +
! " attribute based on DOM node");
}
} else {
throw new UnknownIdentifierException("Attributes of type " + type +
! " aren't supported.");
}
}
***************
*** 335,343 ****
} catch (Exception e) {
throw new ParsingException("couldn't create " + type +
! "attribute from input: " + value);
}
} else {
throw new UnknownIdentifierException("Attributes of type " + type +
! "aren't supported.");
}
}
--- 335,343 ----
} catch (Exception e) {
throw new ParsingException("couldn't create " + type +
! " attribute from input: " + value);
}
} else {
throw new UnknownIdentifierException("Attributes of type " + type +
! " aren't supported.");
}
}
|