Home
last modified time | relevance | path

Searched refs:InvalidCommandException (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/
DCommandOptionsTest.kt45 @Test(expected = InvalidCommandException::class)
50 @Test(expected = InvalidCommandException::class)
74 @Test(expected = InvalidCommandException::class)
85 @Test(expected = InvalidCommandException::class)
95 @Test(expected = InvalidCommandException::class)
105 @Test(expected = InvalidCommandException::class)
115 @Test(expected = InvalidCommandException::class)
125 @Test(expected = InvalidCommandException::class)
136 @Test(expected = InvalidCommandException::class)
147 @Test(expected = InvalidCommandException::class)
[all …]
/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
DCommandOptions.kt60 throw InvalidCommandException("Invalid class name $name") in <lambda>()
67 throw InvalidCommandException("Param $paramName required") in <lambda>()
74 throw InvalidCommandException("Unsupported param $paramName") in <lambda>()
81 throw InvalidCommandException("Jar file required, got $name instead") in <lambda>()
88 throw InvalidCommandException("Source jar file required, got $name instead") in <lambda>()
95 throw InvalidCommandException("Json file required, got $name instead") in <lambda>()
102 throw InvalidCommandException("No java source input files") in <lambda>()
106 throw InvalidCommandException("Not a java source file $name") in <lambda>()
114 throw InvalidCommandException("No log input file") in <lambda>()
117 throw InvalidCommandException("Only one log input file allowed") in <lambda>()
[all …]
Dexceptions.kt41 class InvalidCommandException(message: String) : Exception(message) class
DProtoLogTool.kt207 } catch (ex: InvalidCommandException) { in <lambda>()