data_structures_free
This commit is contained in:
13
net/datastructures/FullStackException.java
Normal file
13
net/datastructures/FullStackException.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package net.datastructures;
|
||||
//begin#fragment FullStackException
|
||||
/**
|
||||
* Runtime exception thrown when the capacity of the array used by an
|
||||
* ArrayStack has been exceeded.
|
||||
* @see ArrayStack
|
||||
*/
|
||||
public class FullStackException extends RuntimeException {
|
||||
public FullStackException(String err) {
|
||||
super(err);
|
||||
}
|
||||
}
|
||||
//end#fragment FullStackException
|
||||
Reference in New Issue
Block a user