aboutsummaryrefslogtreecommitdiffstats
path: root/csci1913/Java/lab9_strap012.java
diff options
context:
space:
mode:
Diffstat (limited to 'csci1913/Java/lab9_strap012.java')
-rw-r--r--csci1913/Java/lab9_strap012.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/csci1913/Java/lab9_strap012.java b/csci1913/Java/lab9_strap012.java
index 94a003c..8dd0032 100644
--- a/csci1913/Java/lab9_strap012.java
+++ b/csci1913/Java/lab9_strap012.java
@@ -70,7 +70,7 @@ class ArrayQueue<Base> {
where = (where + 1) % bases.length;
return temp;
} else {
- throw new IllegalStateException("Queues at its end.");
+ throw new IllegalStateException("Queue is at its end.");
}
}
public void remove() {