exception test not needed

This commit is contained in:
James Turk 2005-07-20 01:38:03 +00:00
parent 2280cc60b3
commit 2c1d1de266

View File

@ -1,30 +0,0 @@
//This file is part of Photon (http://photon.sourceforge.net)
//Copyright (C) 2004-2005 James Turk
//
// Author:
// James Turk (jpt2433@rit.edu)
//
// Version:
// $Id: exception_test.cpp,v 1.2 2005/06/10 07:06:07 cozman Exp $
#include "photon.hpp"
#include "exceptions.hpp"
#include "entrypoint.hpp"
using namespace photon;
class ExceptionTest : public Application
{
public:
int main(const StrVec& args)
{
throw Error("catch this!");
return 0;
}
};
ENTRYPOINT(ExceptionTest)