#include "except.h"
#include <myexcept.h>

namespace wire 
{  
	int Add::add (const int x, const int y) 
	{
		throw myException();
		return( x + y );
	}

	Add::Add() {}
	Add::~Add() {}
}
