repo.or.cz
/
treebuild.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
TreebuildConfig.java: implemented own caching
[treebuild.git]
/
base
/
EPropertyMissing.java
blob
556cbf2f07048e62235a1a88b35e83f6fdb4e5d7
1
2
package
org
.
de
.
metux
.
treebuild
.
base
;
3
4
public class
EPropertyMissing
extends
EPIException
5
{
6
public
EPropertyMissing
(
String name
)
7
{
8
super
(
name
);
9
}
10
public
EPropertyMissing
(
String name
,
Exception e
)
11
{
12
super
(
name
,
e
);
13
}
14
}