diff 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
line wrap: on
line diff
--- a/src/treecms/tree/util/PathNotFoundException.java	Thu Mar 17 23:24:08 2011 +0900
+++ b/src/treecms/tree/util/PathNotFoundException.java	Thu Mar 31 02:08:44 2011 +0900
@@ -19,4 +19,13 @@
 	{
 		super("Path Not Found from "+_from.getID()+" to "+_to.getID());
 	}
+	
+	/**
+	 * コンストラクタです。
+	 * @param _message メッセージ
+	 */
+	public PathNotFoundException(String _message)
+	{
+		super(_message);
+	}
 }