/glassfish-3.1.2/packager/glassfish-corba/src/main/resources/ |
H A D | pkg_proto.py | 45 import re namespace
|
/glassfish-3.1.2/packager/glassfish-corba-base/src/main/resources/ |
H A D | pkg_proto.py | 45 import re namespace
|
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/ |
H A D | SimpleDeployer.java | 88 // re-throw all the exceptions as runtime exceptions 89 RuntimeException re = new RuntimeException(ex.getMessage()); 90 re.initCause(ex); 91 throw re; 118 // re-throw all the exceptions as runtime exceptions 119 RuntimeException re = new RuntimeException(ex.getMessage()); 120 re.initCause(ex); 121 throw re;
|
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/ |
H A D | DataSource.java | 118 } catch (ResourceException re) { 119 logNonTransientException(re); 120 throw new SQLException(re.getMessage(), re); 126 * @param re Exception to log 128 private void logNonTransientException(ResourceException re) { argument 129 if(!BadConnectionEventListener.POOL_RECONFIGURED_ERROR_CODE.equals(re.getErrorCode())){ 130 _logger.log(Level.WARNING, "jdbc.exc_get_conn", re.getMessage()); 149 } catch (ResourceException re) { 150 logNonTransientException(re); [all...] |
H A D | ConnectionHolder.java | 762 } catch (ResourceException re) { 764 "jdbc.cannot_enlist", re.getMessage() + 768 sqle.initCause(re); 778 } catch (ResourceException re) { 780 "jdbc.cannot_assoc", re.getMessage() + 784 sqle.initCause(re);
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/ |
H A D | EjbRemoteFutureTask.java | 104 } catch(RemoteException re) { 106 throw new EJBException("Exception during cancel operation", re); 139 } catch(RemoteException re) { 140 setResultException(re); 178 } catch(RemoteException re) { 179 setResultException(re); 223 } catch(RemoteException re) { 224 throw new EJBException(re);
|
H A D | EjbFutureTask.java | 112 } catch(RuntimeException re) { 113 setResultException(re); 153 } catch(RuntimeException re) { 154 setResultException(re);
|
H A D | EJBLocalHomeImpl.java | 143 } catch(java.rmi.RemoteException re) { 148 ejbEx.initCause(re);
|
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/monitoring/ |
H A D | JAXRPCEndpointImpl.java | 106 RuntimeException re; 108 re = (RuntimeException) t; 110 re = new RuntimeException(t); 112 throw re; 156 RuntimeException re; 158 re = (RuntimeException) t; 160 re = new RuntimeException(t); 162 throw re;
|
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/ |
H A D | LocalSerialContextProviderImpl.java | 80 } catch (RemoteException re) { 83 new Object[]{re.getMessage()}); 147 RemoteException re = new RemoteException("", e); 148 throw re;
|
H A D | SerialContextProviderImpl.java | 82 RemoteException re = new RemoteException("", e); 83 throw re;
|
H A D | RemoteSerialContextProviderImpl.java | 140 // create() call and re-lookup the name. 146 RemoteException re = new RemoteException("", e); 147 throw re;
|
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/ |
H A D | NamingUtilsImpl.java | 124 RuntimeException re = 126 re.initCause(ex); 127 throw re;
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/ |
H A D | BootstrapContextImpl.java | 137 RuntimeException re = new RuntimeException("Transaction Synchronization Registry Unavailable"); 138 re.initCause(e); 139 throw re;
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/rm/ |
H A D | LazyEnlistableResourceManagerImpl.java | 109 ResourceException re = new ResourceException( se.getMessage() ); 110 re.initCause( se ); 111 throw re;
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/listener/ |
H A D | UnpooledConnectionEventListener.java | 66 } catch (Throwable re) {
|
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/webservices/ |
H A D | ServletSystemHandlerDelegate.java | 204 RuntimeException re = null; 206 re = (RuntimeException) cause; 208 re = new RuntimeException(cause); 210 throw re;
|
/glassfish-3.1.2/transaction/jta/src/main/java/com/sun/enterprise/transaction/ |
H A D | TransactionManagerHelper.java | 176 } catch (java.rmi.RemoteException re) { 177 throw new IllegalStateException(re); 198 } catch (java.rmi.RemoteException re) { 199 throw new IllegalStateException(re);
|
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/util/ |
H A D | DumpMapping.java | 176 RelationshipElement re = (RelationshipElement) pfe; 178 println(tabs+1, "bounds = " + re.getLowerBound() + " / " + re.getUpperBound()); //NOI18N 179 println(tabs+1, "deleteAction = " + re.getDeleteAction()); //NOI18N 180 println(tabs+1, "updateAction = " + re.getUpdateAction()); //NOI18N 181 println(tabs+1, "collectionClass = " + re.getCollectionClass()); //NOI18N 182 println(tabs+1, "elementClass = " + re.getElementClass()); //NOI18N 183 println(tabs+1, "isPrefetch = " + re.isPrefetch()); //NOI18N
|
/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/ |
H A D | GMSConfigUpgrade.java | 189 } catch (Throwable re) { 201 } catch (Throwable re) { 211 } catch (Throwable re) { 221 } catch (Throwable re) { 231 } catch (Throwable re) {
|
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | ImplementorCacheDelegateImpl.java | 106 RuntimeException re = new RuntimeException(); 107 re.initCause(t); 108 throw re;
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/ |
H A D | ApplicationConfigListener.java | 287 RuntimeException re = new RuntimeException(e.getMessage()); 288 re.initCause(e); 289 throw re; 318 RuntimeException re = new RuntimeException(e.getMessage()); 319 re.initCause(e); 320 throw re;
|
/glassfish-3.1.2/common/mejb/src/main/java/org/glassfish/admin/mejb/ |
H A D | EventListenerProxy.java | 78 } catch (RemoteException re) { 79 if(debug) System.out.println("Naming.rebind("+ proxyAddress +", eventProxy): " + re);
|
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/ |
H A D | EntityManagerWrapper.java | 447 } catch(RuntimeException re) { 451 throw re; 479 } catch(RuntimeException re) { 483 throw re; 512 } catch(RuntimeException re) { 516 throw re; 544 } catch(RuntimeException re) { 548 throw re; 577 } catch(RuntimeException re) { 581 throw re; [all...] |
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/allocator/ |
H A D | AbstractConnectorAllocator.java | 123 } catch (ResourceException re) { 128 re.getClass(), 129 re.getMessage() }; 133 _logger.log(Level.FINE, "", re);
|