Die Datei:
NoZeroFoundException.java
1
/**
2
* exception for searchZero method
3
* no 0 point found in an interval
4
*/
5
6
public
7
class
NoZeroFoundException
8
extends
Exception
9
{
10
public
11
NoZeroFoundException
(
String
msg
)
{
12
super
(
msg
)
;
13
}
14
15
}
Die Quelle:
NoZeroFoundException.java
Letzte Änderung: 29.04.2013
©
Prof. Dr. Uwe Schmidt