ClassNotFoundConfigurationException
public
class
ClassNotFoundConfigurationException
extends ConfigurationException
| java.lang.Object | |||||
| ↳ | java.lang.Throwable | ||||
| ↳ | java.lang.Exception | ||||
| ↳ | com.android.tradefed.error.HarnessException | ||||
| ↳ | com.android.tradefed.config.ConfigurationException | ||||
| ↳ | com.android.tradefed.config.ClassNotFoundConfigurationException | ||||
ConfigurationException lorsque la classe d'un objet est introuvable.
Résumé
Constructeurs publics | |
|---|---|
ClassNotFoundConfigurationException(String msg, Throwable cause, ErrorIdentifier error, String className, String objectType)
Crée un objet |
|
ClassNotFoundConfigurationException(String msg, Throwable cause, ErrorIdentifier error, Map<String, String> rejectedObjects)
Crée un objet |
|
Méthodes publiques | |
|---|---|
Map<String, String>
|
getRejectedObjects()
Renvoie la carte de la classe d'objet qui a été refusée. |
Constructeurs publics
ClassNotFoundConfigurationException
public ClassNotFoundConfigurationException (String msg,
Throwable cause,
ErrorIdentifier error,
String className,
String objectType)Crée un objet ClassNotFoundConfigurationException.
| Paramètres | |
|---|---|
msg |
String : message d'erreur pertinent |
cause |
Throwable : Throwable qui représente la cause première de l'erreur |
error |
ErrorIdentifier : ErrorIdentifier associé à l'exception |
className |
String : classe de l'objet introuvable. |
objectType |
String : type d'objet Tradefed de l'objet introuvable |
ClassNotFoundConfigurationException
public ClassNotFoundConfigurationException (String msg,
Throwable cause,
ErrorIdentifier error,
Map<String, String> rejectedObjects)Crée un objet ClassNotFoundConfigurationException.
| Paramètres | |
|---|---|
msg |
String : message d'erreur pertinent |
cause |
Throwable : Throwable qui représente la cause première de l'erreur |
error |
ErrorIdentifier : ErrorIdentifier associé à l'exception |
rejectedObjects |
Map : carte des objets dont le chargement a échoué. |
Méthodes publiques
getRejectedObjects
public Map<String, String> getRejectedObjects ()
Renvoie la carte de la classe d'objet qui a été refusée.
| Renvoie | |
|---|---|
Map<String, String> |
|