FileDocCategorySizeDatePackage
MediaException.javaAPI DocphoneME MR2 API (J2ME)1822Wed May 02 18:00:00 BST 2007javax.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