From f8028c98644780b03038377147070862d9bf1274 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 29 Oct 2013 10:19:17 -0500 Subject: [PATCH] Add a dummy implementation of EmptyStackException Signed-off-by: Johannes Schindelin --- classpath/java/util/EmptyStackException.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 classpath/java/util/EmptyStackException.java diff --git a/classpath/java/util/EmptyStackException.java b/classpath/java/util/EmptyStackException.java new file mode 100644 index 0000000000..ccc2a7917d --- /dev/null +++ b/classpath/java/util/EmptyStackException.java @@ -0,0 +1,13 @@ +/* Copyright (c) 2008-2013, Avian Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice appear + in all copies. + + There is NO WARRANTY for this software. See license.txt for + details. */ + +package java.util; + +public class EmptyStackException extends RuntimeException {}