Teuchos - Trilinos Tools Package  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Teuchos_Ptr.cpp
1 // @HEADER
2 // *****************************************************************************
3 // Teuchos: Common Tools Package
4 //
5 // Copyright 2004 NTESS and the Teuchos contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #include "Teuchos_Ptr.hpp"
11 #include "Teuchos_Assert.hpp"
12 #include "Teuchos_Exceptions.hpp"
13 
14 
15 void Teuchos::PtrPrivateUtilityPack::throw_null( const std::string &type_name )
16 {
18  true, NullReferenceError,
19  "Ptr<"<<type_name<<">::assert_not_null() : You can not"
20  " call operator->() or operator*() if get()==NULL!" );
21 }
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.