* Reads the generic fault types declared in an @AsyncFault annotation on an async server method
* @param method - the Method
* @return - an array of fault/exception classes
*/
private Type[] readAsyncGenericFaultTypes( Method method ) {
AsyncFault theFaults = method.getAnnotation(AsyncFault.class);
if ( theFaults == null ) return null;
return theFaults.value();
} // end method readAsyncFaultTypes