| JavaDoq: Continue.java |
01
02 /*
03 * Descripter 1.0 - Java Script Engines
04 * Copyright (C) 2010-2015 Jianjun Liu (J.J.Liu)
05 *
06 * This program is free software: you can redistribute it and/or modify
07 * it under the terms of the GNU Affero General Public License as published by
08 * the Free Software Foundation, either version 3 of the License, or
09 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 package org.descripter.js;
21
22 /**
23 * <p>An exception class used to interpret JavaScript continue statements.</p>
24 *
25 * @see Interpreter
26 *
27 * @author <a href="mailto:jianjunliu@126.com">J.J.Liu (Jianjun Liu)</a> at <a href="http://www.descripter.org" target="_blank">http://www.descripter.org</a>
28 * @since Descripter 1.0
29 */
30 public class Continue extends Abrupt
31 {
32 private static final long serialVersionUID = -4472272990543761448L;
33
34 /**
35 * <p>Constructs a runtime exception of this type.</p>
36 * @since Descripter 1.0
37 */
38 public Continue() {
39 }
40
41 /**
42 * <p>Constructs a runtime exception of this type.</p>
43 * @param label A label value to store.
44 * @since Descripter 1.0
45 */
46 public Continue(Object label) {
47 super(label);
48 }
49 }
| JavaDoq: Continue.java |