annotate src/treecms/tree/util/PathNotFoundException.java @ 7:fc19e38b669b

added concurrent access client for cassandr
author shoshi
date Thu, 17 Mar 2011 23:24:08 +0900
parents
children f96193babac0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
1 package treecms.tree.util;
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
2
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
3 import treecms.api.Node;
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
4
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
5 /**
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
6 * あるNodeからNodeまでのパスが検索したが見つからない場合に発生します.
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
7 * @author shoshi
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
8 */
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
9 public class PathNotFoundException extends Exception
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
10 {
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
11 private static final long serialVersionUID = 6372927818478170944L;
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
12
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
13 /**
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
14 * コンストラクタです.
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
15 * @param _from 木構造のルートNode
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
16 * @param _to 検索する対象のNode
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
17 */
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
18 public PathNotFoundException(Node _from,Node _to)
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
19 {
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
20 super("Path Not Found from "+_from.getID()+" to "+_to.getID());
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
21 }
fc19e38b669b added concurrent access client for cassandr
shoshi
parents:
diff changeset
22 }