1 18 package org.apache.roller.webservices.adminapi.sdk; 19 20 public class MissingElementException extends Exception { 21 private String parent; 22 private String child; 23 24 public MissingElementException(String msg, String parent, String child) { 25 this.parent = parent; 26 this.child = child; 27 } 28 29 public String getMessage() { 30 return super.getMessage() + ": expected element " + child + " as a child of element " + parent; 31 } 32 } 33 | Popular Tags |