Package org.openntf.domino

Examples of org.openntf.domino.Document.fillExceptionDetails()


  @Override
  public void fillExceptionDetails(final List<ExceptionDetails.Entry> result) {
    Document myDoc = getParent();
    if (myDoc != null)
      myDoc.fillExceptionDetails(result);
    String myDetail = name_;
    try {
      myDetail = ", Type:" + getDelegate().getType();
    } catch (NotesException e) {
      myDetail += ", [getType -> NotesException: " + e.text + "]";
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.