Home
last modified time | relevance | path

Searched refs:InvalidViewerConfigException (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/
DViewerConfigParserTest.kt77 @Test(expected = InvalidViewerConfigException::class)
88 @Test(expected = InvalidViewerConfigException::class)
99 @Test(expected = InvalidViewerConfigException::class)
133 @Test(expected = InvalidViewerConfigException::class)
171 @Test(expected = InvalidViewerConfigException::class)
231 @Test(expected = InvalidViewerConfigException::class)
253 @Test(expected = InvalidViewerConfigException::class)
274 @Test(expected = InvalidViewerConfigException::class)
289 @Test(expected = InvalidViewerConfigException::class)
306 @Test(expected = InvalidViewerConfigException::class)
/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
DViewerConfigParser.kt43 throw InvalidViewerConfigException("Invalid message entry in viewer config") in <lambda>()
61 throw InvalidViewerConfigException("Invalid group entry in viewer config") in <lambda>()
72 ?: throw InvalidViewerConfigException("Invalid key in messages viewer config") in <lambda>()
109 throw InvalidViewerConfigException("Invalid config - definitions missing") in <lambda>()
112 throw InvalidViewerConfigException("Viewer config version not supported by this tool," + in <lambda>()
118 ?: throw InvalidViewerConfigException( in <lambda>()
Dexceptions.kt37 class InvalidViewerConfigException(message: String) : Exception(message) class