FileDocCategorySizeDatePackage
MediaException.javaAPI DocJ2ME MIDP 2.0961Thu Nov 07 12:02:30 GMT 2002javax.microedition.media

MediaException

public class MediaException extends Exception
A MediaException indicates an unexpected error condition in a method.

Fields Summary
Constructors Summary
public MediaException()
Constructs a MediaException with null as its error detail message.

	super();
    
public MediaException(String reason)
Constructs a MediaException with the specified detail message. The error message string s can later be retrieved by the {@link java.lang.Throwable#getMessage} method of class java.lang.Throwable.

param
reason the detail message.

	super(reason);
    
Methods Summary