-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSortingException.java
More file actions
60 lines (52 loc) · 1.09 KB
/
SortingException.java
File metadata and controls
60 lines (52 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
*
*/
package it.unicam.cs.asdl2122.pt1;
/**
*
* Eccezione che segnala che un algoritmo di ordinamento ha commesso un errore.
*
* @author Luca Tesei
*
*/
public class SortingException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 7289728998235L;
/**
*
*/
public SortingException() {
super();
}
/**
* @param message
* @param cause
* @param enableSuppression
* @param writableStackTrace
*/
public SortingException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
/**
* @param message
* @param cause
*/
public SortingException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param message
*/
public SortingException(String message) {
super(message);
}
/**
* @param cause
*/
public SortingException(Throwable cause) {
super(cause);
}
}