Examples of Stacktrace


Examples of bitronix.tm.utils.StackTrace

            if (log.isDebugEnabled()) { log.debug(interestedResources.size() + " interested resource(s)"); }

            committer.commit(this, interestedResources);

            if (resourceManager.size() == 0 && TransactionManagerServices.getConfiguration().isDebugZeroResourceTransaction()) {
                log.warn(buildZeroTransactionDebugMessage(activationStackTrace, new StackTrace()));
            }

            if (log.isDebugEnabled()) { log.debug("successfully committed " + this); }
        }
        finally {
View Full Code Here

Examples of bitronix.tm.utils.StackTrace

        setStatus(Status.STATUS_ACTIVE);
        this.startDate = new Date(MonotonicClock.currentTimeMillis());
        this.timeoutDate = new Date(MonotonicClock.currentTimeMillis() + (timeout * 1000L));
        if (TransactionManagerServices.getConfiguration().isDebugZeroResourceTransaction()) {
            this.activationStackTrace = new StackTrace();
        }

        taskScheduler.scheduleTransactionTimeout(this, timeoutDate);
    }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

        try {
            PropertyDescriptor destPd = new PropertyDescriptor(destFieldName, target.getClass());
            return destPd.getWriteMethod();
        }
        catch (java.beans.IntrospectionException t) {
            Reporter.critical(new StackTrace(t)); //NOI18N
            throw t;
        }
    }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

        }
        catch (Throwable t) {
            Method[] allmethods = targetClass.getMethods();
            for (int i = 0; null != allmethods && i < allmethods.length; i++)
                Reporter.info(allmethods[i].getReturnType() + " " +allmethods[i].getName());//NOI18N
            Reporter.critical(new StackTrace(t)); //NOI18N
            throw new java.beans.IntrospectionException(getterName);
            //return getReader2(target,destFieldName);
        }
        }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

            try {
                args[0] = pce.getNewValue().toString();
                writer.invoke(target, args);
            }
            catch (Throwable tt) {
                Reporter.critical(new StackTrace(t)); //NOI18N
            }
        }
    }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

      this.fileList    = fileList;
                        zipStream = new ZipOutputStream(new FileOutputStream(zipFilename));
    }
    catch(Exception f)
    {
                        Reporter.critical(new StackTrace(f)); //NOI18N
      throw new ZipFileException(f);
    }
  }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

     
      zipStream.close();
    }
    catch(ZipFileException z)
    {
                    Reporter.critical(new StackTrace(z)); //NOI18N
      throw z;
    }
    catch(Exception e)
    {
                    Reporter.critical(new StackTrace(e)); //NOI18N
      throw new ZipFileException(e);
    }
  }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

                }
                lsm[0].addListSelectionListener(new SelectionActivator(sensitiveItem, hasListSelectionModel));
            }
        }
        catch (Throwable t) {
            Reporter.critical(new StackTrace(t)); //NOI18N
        }
    }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

            Object tmp = reader.invoke(model,null);
            if (null != tmp)
                retVal =tmp.toString();
        }
        catch (Throwable t) {
            Reporter.critical(new StackTrace(t)); //NOI18N
        }
        return retVal;
    }
View Full Code Here

Examples of com.sun.enterprise.tools.common.util.diagnostics.StackTrace

                    args[0] = EMPTY;
                }
                writer.invoke(target, args);
            }
            catch (Throwable t) {
                Reporter.critical(new StackTrace(t)); //NOI18N
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.