diff --git a/testing/interpolation/InterpolationITKTransformation/rttbInterpolationITKTransformationTests.cpp b/testing/interpolation/InterpolationITKTransformation/rttbInterpolationITKTransformationTests.cpp
index 9695ef5..1ab196b 100644
--- a/testing/interpolation/InterpolationITKTransformation/rttbInterpolationITKTransformationTests.cpp
+++ b/testing/interpolation/InterpolationITKTransformation/rttbInterpolationITKTransformationTests.cpp
@@ -1,63 +1,53 @@
 // -----------------------------------------------------------------------
 // RTToolbox - DKFZ radiotherapy quantitative evaluation library
 //
 // Copyright (c) German Cancer Research Center (DKFZ),
 // Software development for Integrated Diagnostics and Therapy (SIDT).
 // ALL RIGHTS RESERVED.
 // See rttbCopyright.txt or
 // http://www.dkfz.de/en/sidt/projects/rttb/copyright.html
 //
 // This software is distributed WITHOUT ANY WARRANTY; without even
 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 // PURPOSE.  See the above copyright notices for more information.
 //
 //------------------------------------------------------------------------
-/*!
-// @file
-// @version $Revision$ (last changed revision)
-// @date    $Date$ (last change date)
-// @author  $Author$ (last changed by)
-*/
 
 // this file defines the rttbAlgorithmsTests for the test driver
 // and all it expects is that you have a function called RegisterTests
 #if defined(_MSC_VER)
 #pragma warning ( disable : 4786 )
 #endif
 
 
 #include "litMultiTestsMain.h"
 
 namespace rttb
 {
 	namespace testing
 	{
 
 		void registerTests()
 		{
 			LIT_REGISTER_TEST(SimpleMappableDoseAccessorWithITKTest);
 		}
 	}
 }
 
 int main(int argc, char* argv[])
 {
 	int result = 0;
 
 	rttb::testing::registerTests();
 
 	try
 	{
 		result = lit::multiTestsMain(argc, argv);
 	}
-	catch (const std::exception& /*e*/)
-	{
-		result = -1;
-	}
 	catch (...)
 	{
 		result = -1;
 	}
 
 	return result;
 }