open class MissingResourceException : RuntimeException
| kotlin.Any | ||||
| ↳ | kotlin.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.lang.RuntimeException | |||
| ↳ | java.util.MissingResourceException | |||
Signals that a resource is missing.
Summary
| Public constructors | |
|---|---|
|
Constructs a MissingResourceException with the specified information. |
|
| Public methods | |
|---|---|
| open String! |
Gets parameter passed by constructor. |
| open String! |
Gets parameter passed by constructor. |
Public constructors
MissingResourceException
MissingResourceException(
s: String!,
className: String!,
key: String!)
Constructs a MissingResourceException with the specified information. A detail message is a String that describes this particular exception.
| Parameters | |
|---|---|
s |
String!: the detail message |
className |
String!: the name of the resource class |
key |
String!: the key for the missing resource. |