Skip to content

Commit 6f6730d

Browse files
committed
HOMEWORK2016
1 parent ab525a7 commit 6f6730d

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package Homework2016;
2+
3+
/**
4+
* Created by Виктор on 29.12.2015.
5+
*/
6+
public class IllegalStateExceptionTrack extends Exception {
7+
private int trackValue;
8+
public IllegalStateExceptionTrack (final int trackValue) {
9+
this.trackValue = trackValue;
10+
}
11+
public int getTrackValue() {
12+
return trackValue;
13+
}
14+
15+
16+
}

0 commit comments

Comments
 (0)