00001 00002 // Source File Name: StackOverflowError.java 00003 00004 // package java.lang; 00005 00006 // Referenced classes of package java.lang: 00007 // VirtualMachineError, String 00008 00009 #ifndef __J2K__STACK_OVERFLOW_ERROR_HPP__ 00010 #define __J2K__STACK_OVERFLOW_ERROR_HPP__ 00011 00012 #include <j2k/Fred/String/String.hpp> 00013 #include <j2k/Fred/Lang/Error/VirtualMachineError.hpp> 00014 00015 class StackOverflowError : public VirtualMachineError 00016 { 00017 public: 00018 StackOverflowError() : VirtualMachineError() { } 00019 StackOverflowError(String* s) : VirtualMachineError( s ) { } 00020 }; 00021 00022 #endif