to top
Android APIs
public class

NoClassDefFoundError

extends LinkageError
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.lang.LinkageError
         ↳ java.lang.NoClassDefFoundError

Class Overview

Thrown when the VM is unable to locate a class which it has been asked to load.

Summary

Public Constructors
NoClassDefFoundError()
Constructs a new NoClassDefFoundError that includes the current stack trace.
NoClassDefFoundError(String detailMessage)
Constructs a new NoClassDefFoundError with the current stack trace and the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public NoClassDefFoundError ()

Added in API level 1

Constructs a new NoClassDefFoundError that includes the current stack trace.

public NoClassDefFoundError (String detailMessage)

Added in API level 1

Constructs a new NoClassDefFoundError with the current stack trace and the specified detail message.

Parameters
detailMessage the detail message for this error.