コード例 #1
0
ファイル: GlbRoleEJB.java プロジェクト: pedrocleto/Java
 public Collection find(GlbRoleDao attrs)
     throws RemoteException, FinderException, RowNotFoundException {
   try {
     return dao.find((Object) attrs);
   } catch (RowNotFoundException rnfex) {
     throw rnfex;
   } catch (Exception ex) {
     throw new FinderException(ex.toString());
   }
 }