comparison src/treecms/tree/util/PathNotFoundException.java @ 8:f96193babac0

changed byte[] to ByteBuffer added TreeEditor.updateTree(Node,NodeData,Node[]) for node path is known. added GUIEditor
author shoshi
date Thu, 31 Mar 2011 02:08:44 +0900
parents fc19e38b669b
children
comparison
equal deleted inserted replaced
7:fc19e38b669b 8:f96193babac0
17 */ 17 */
18 public PathNotFoundException(Node _from,Node _to) 18 public PathNotFoundException(Node _from,Node _to)
19 { 19 {
20 super("Path Not Found from "+_from.getID()+" to "+_to.getID()); 20 super("Path Not Found from "+_from.getID()+" to "+_to.getID());
21 } 21 }
22
23 /**
24 * コンストラクタです。
25 * @param _message メッセージ
26 */
27 public PathNotFoundException(String _message)
28 {
29 super(_message);
30 }
22 } 31 }