PlayaExceptions.cpp

00001 /* @HEADER@ */
00002 //   
00003 /* @HEADER@ */
00004 
00005 #include "PlayaExceptions.hpp"
00006 
00007 using namespace Playa;
00008 
00009 InternalError::InternalError(const std::string& msg)
00010   : std::logic_error(msg)
00011 {;}
00012 
00013 RuntimeError::RuntimeError(const std::string& msg)
00014   : std::runtime_error(msg)
00015 {;}
00016 

doxygen