//#
//# Test Exception with Stack
//# $Revision: 1.1 $
//# Copyright 2005 by Eric Y. Theriault
//# All Rights Reserved.
//# http://www.eyt.ca/
//#
#include "ExceptionWithStack.h"

int main( int argc, char ** argv )
{
    try {
        MY_THROW( "Something went dreadfully wrong." );
    } catch ( ExceptionWithStack & e ) {
        e.printStackTrace();
        return 1;
    }
    return 0;
}

