Examples of fillExceptionDetails()


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

  public void fillExceptionDetails(final List<ExceptionDetails.Entry> result) {
    Database myDB = getAncestor();
    String repId = "";

    if (myDB != null) {
      myDB.fillExceptionDetails(result);
      repId = "ReplicaID:" + myDB.getReplicaID() + ", ";
    }
    String myDetail = repId + "UNID:" + unid_ + ", NoteID:" + noteid_;

    try {
View Full Code Here

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

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

  @Override
  public void fillExceptionDetails(final List<ExceptionDetails.Entry> result) {
    Session mySess = getParent();
    if (mySess != null)
      mySess.fillExceptionDetails(result);
    result.add(new ExceptionDetails.Entry(this, getApiPath()));
  }
}
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.