mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Add optional message parameter to PDOMNotImplementedError
This commit is contained in:
parent
e62a54fcea
commit
b348ab9f8d
1 changed files with 7 additions and 0 deletions
|
@ -18,4 +18,11 @@ public class PDOMNotImplementedError extends Error {
|
||||||
|
|
||||||
public static final long serialVersionUID = 0;
|
public static final long serialVersionUID = 0;
|
||||||
|
|
||||||
|
public PDOMNotImplementedError() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public PDOMNotImplementedError(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue