mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
c28a8d139f
Some new, some old filres copiedfrom Rhino to form start of prototyping environment for Project Brenda
27 lines
671 B
Java
27 lines
671 B
Java
/* -*- Mode: java; tab-width: 8 -*-
|
|
* Copyright © 1998 Netscape Communications Corporation,
|
|
* All Rights Reserved.
|
|
*/
|
|
|
|
// API class
|
|
/**
|
|
* Thrown if the thread association cannot be made.
|
|
*
|
|
* Thrown by Context.enter() if the context
|
|
* is already associated with a thread, or if the
|
|
* current thread is already associated with a context.<p>
|
|
*
|
|
* Thrown by Context.exit() if the context is not
|
|
* associated with the current thread.
|
|
*
|
|
* @see com.netscape.javascript.Context#enter
|
|
* @see com.netscape.javascript.Context#exit
|
|
*/
|
|
public class ThreadLinkException extends Exception {
|
|
|
|
public ThreadLinkException(String detail) {
|
|
super(detail);
|
|
}
|
|
}
|
|
|