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