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.
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.