Home
last modified time | relevance | path

Searched refs:CustomException (Results 1 – 7 of 7) sorted by relevance

/external/catch2/projects/SelfTest/UsageTests/
DException.tests.cpp42 class CustomException { class
44 explicit CustomException( const std::string& msg ) in CustomException() function in __anon932250df0111::ExceptionTests::CustomException
72 throw CustomException( "custom exception - not std" ); in throwCustom()
130 CATCH_TRANSLATE_EXCEPTION( CustomException& ex ) { in CATCH_TRANSLATE_EXCEPTION()
143 throw CustomException( "custom exception" );
147 throw CustomException( "custom std exception" );
/external/python/apitools/apitools/base/py/testing/
Dmock_test.py42 class CustomException(Exception): class
101 with self.assertRaises(CustomException):
105 raise CustomException('Something when wrong')
/external/llvm-project/clang/test/Analysis/
DNoReturn.m79 @interface CustomException : NSException interface
85 [CustomException raise:@"Blah" format:@"abc"];
/external/clang/test/Analysis/
DNoReturn.m79 @interface CustomException : NSException interface
85 [CustomException raise:@"Blah" format:@"abc"];
/external/python/cpython2/Lib/test/
Dtest_dict.py502 class CustomException(Exception): class
511 raise CustomException
526 with self.assertRaises(CustomException):
/external/python/cpython3/Lib/test/
Dtest_wsgiref.py841 class CustomException(ValueError): class
850 raise CustomException
Dtest_dict.py764 class CustomException(Exception): class
773 raise CustomException
787 with self.assertRaises(CustomException):