From 98e2821b38a775737e42a2479a6bc65107210859 Mon Sep 17 00:00:00 2001 From: Elliot Kroo Date: Thu, 11 Mar 2010 15:21:30 -0800 Subject: reorganizing the first level of folders (trunk/branch folders are not the git way :) --- .../org/mozilla/javascript/RhinoException.html | 544 --------------------- 1 file changed, 544 deletions(-) delete mode 100644 trunk/infrastructure/rhino1_7R1/javadoc/org/mozilla/javascript/RhinoException.html (limited to 'trunk/infrastructure/rhino1_7R1/javadoc/org/mozilla/javascript/RhinoException.html') diff --git a/trunk/infrastructure/rhino1_7R1/javadoc/org/mozilla/javascript/RhinoException.html b/trunk/infrastructure/rhino1_7R1/javadoc/org/mozilla/javascript/RhinoException.html deleted file mode 100644 index 4ad3d0f..0000000 --- a/trunk/infrastructure/rhino1_7R1/javadoc/org/mozilla/javascript/RhinoException.html +++ /dev/null @@ -1,544 +0,0 @@ - - - - - - -RhinoException (Rhino) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.mozilla.javascript -
-Class RhinoException

-
-java.lang.Object
-  extended by java.lang.Throwable
-      extended by java.lang.Exception
-          extended by java.lang.RuntimeException
-              extended by org.mozilla.javascript.RhinoException
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
Direct Known Subclasses:
EcmaError, EvaluatorException, JavaScriptException
-
-
-
-
public abstract class RhinoException
extends java.lang.RuntimeException
- - -

-The class of exceptions thrown by the JavaScript engine. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- intcolumnNumber() - -
-          The column number of the location of the error, or zero if unknown.
- java.lang.Stringdetails() - -
-           
- java.lang.StringgetMessage() - -
-           
- java.lang.StringgetScriptStackTrace() - -
-          Get a string representing the script stack of this exception.
- java.lang.StringgetScriptStackTrace(java.io.FilenameFilter filter) - -
-          Get a string representing the script stack of this exception.
- voidinitColumnNumber(int columnNumber) - -
-          Initialize the column number of the script statement causing the error.
- voidinitLineNumber(int lineNumber) - -
-          Initialize the line number of the script statement causing the error.
- voidinitLineSource(java.lang.String lineSource) - -
-          Initialize the text of the source line containing the error.
- voidinitSourceName(java.lang.String sourceName) - -
-          Initialize the uri of the script source containing the error.
- intlineNumber() - -
-          Returns the line number of the statement causing the error, - or zero if not available.
- java.lang.StringlineSource() - -
-          The source text of the line causing the error, or null if unknown.
- voidprintStackTrace(java.io.PrintStream s) - -
-           
- voidprintStackTrace(java.io.PrintWriter s) - -
-           
- java.lang.StringsourceName() - -
-          Get the uri of the script source containing the error, or null - if that information is not available.
- - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-getMessage

-
-public final java.lang.String getMessage()
-
-
-
Overrides:
getMessage in class java.lang.Throwable
-
-
-
-
-
-
- -

-details

-
-public java.lang.String details()
-
-
-
-
-
-
- -

-sourceName

-
-public final java.lang.String sourceName()
-
-
Get the uri of the script source containing the error, or null - if that information is not available. -

-

-
-
-
-
- -

-initSourceName

-
-public final void initSourceName(java.lang.String sourceName)
-
-
Initialize the uri of the script source containing the error. -

-

-
Parameters:
sourceName - the uri of the script source responsible for the error. - It should not be null. -
Throws: -
java.lang.IllegalStateException - if the method is called more then once.
-
-
-
- -

-lineNumber

-
-public final int lineNumber()
-
-
Returns the line number of the statement causing the error, - or zero if not available. -

-

-
-
-
-
- -

-initLineNumber

-
-public final void initLineNumber(int lineNumber)
-
-
Initialize the line number of the script statement causing the error. -

-

-
Parameters:
lineNumber - the line number in the script source. - It should be positive number. -
Throws: -
java.lang.IllegalStateException - if the method is called more then once.
-
-
-
- -

-columnNumber

-
-public final int columnNumber()
-
-
The column number of the location of the error, or zero if unknown. -

-

-
-
-
-
- -

-initColumnNumber

-
-public final void initColumnNumber(int columnNumber)
-
-
Initialize the column number of the script statement causing the error. -

-

-
Parameters:
columnNumber - the column number in the script source. - It should be positive number. -
Throws: -
java.lang.IllegalStateException - if the method is called more then once.
-
-
-
- -

-lineSource

-
-public final java.lang.String lineSource()
-
-
The source text of the line causing the error, or null if unknown. -

-

-
-
-
-
- -

-initLineSource

-
-public final void initLineSource(java.lang.String lineSource)
-
-
Initialize the text of the source line containing the error. -

-

-
Parameters:
lineSource - the text of the source line responsible for the error. - It should not be null. -
Throws: -
java.lang.IllegalStateException - if the method is called more then once.
-
-
-
- -

-getScriptStackTrace

-
-public java.lang.String getScriptStackTrace()
-
-
Get a string representing the script stack of this exception. - If optimization is enabled, this corresponds to all java stack elements - with a source name ending with ".js". -

-

- -
Returns:
a script stack dump
Since:
-
1.6R6
-
-
-
-
- -

-getScriptStackTrace

-
-public java.lang.String getScriptStackTrace(java.io.FilenameFilter filter)
-
-
Get a string representing the script stack of this exception. - If optimization is enabled, this corresponds to all java stack elements - with a source name matching the filter. -

-

-
Parameters:
filter - the file name filter to determine whether a file is a - script file -
Returns:
a script stack dump
Since:
-
1.6R6
-
-
-
-
- -

-printStackTrace

-
-public void printStackTrace(java.io.PrintWriter s)
-
-
-
Overrides:
printStackTrace in class java.lang.Throwable
-
-
-
-
-
-
- -

-printStackTrace

-
-public void printStackTrace(java.io.PrintStream s)
-
-
-
Overrides:
printStackTrace in class java.lang.Throwable
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - -- cgit v1.2.3