Added code for UnimplementedException. This exception gets thrown whenever a
funcion that has not yet been implemented is called. Bug = 40330 author = ashuk r = edburns _Ashu git-svn-id: svn://10.0.0.236/trunk@70680 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
c21916a171
commit
d60a1b5e4b
@ -22,6 +22,8 @@
|
||||
|
||||
package org.mozilla.webclient;
|
||||
|
||||
import java.util.Properties;
|
||||
|
||||
public interface CurrentPage
|
||||
{
|
||||
public void copyCurrentSelectionToSystemClipboard();
|
||||
@ -34,7 +36,7 @@ public String getCurrentURL();
|
||||
|
||||
// org.w3c.dom.Document getDOM();
|
||||
|
||||
// webclient.PageInfo getPageInfo();
|
||||
public Properties getPageInfo();
|
||||
|
||||
public String getSource();
|
||||
|
||||
|
||||
@ -0,0 +1,22 @@
|
||||
/** This class implements the UnimplementedException Exception
|
||||
class. This derives from RuntimeException and is used as a
|
||||
placeholder definition for all API functions that have not
|
||||
yet been implemented
|
||||
*/
|
||||
|
||||
package org.mozilla.webclient;
|
||||
|
||||
import java.lang.*;
|
||||
|
||||
|
||||
public class UnimplementedException extends RuntimeException
|
||||
{
|
||||
|
||||
public UnimplementedException() { }
|
||||
|
||||
public UnimplementedException(String msg)
|
||||
{
|
||||
super(msg);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user