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:
ashuk%eng.sun.com 2000-05-23 21:04:47 +00:00
parent c21916a171
commit d60a1b5e4b
2 changed files with 25 additions and 1 deletions

View File

@ -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();

View File

@ -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);
}
}