We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab525a7 commit 6f6730dCopy full SHA for 6f6730d
1 file changed
src/Homework2016/IllegalStateExceptionTrack.java
@@ -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