wasCSharpSQLite – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * TclRuntimeError.java
3 *
4 * Copyright (c) 1997 Sun Microsystems, Inc.
5 *
6 * See the file "license.terms" for information on usage and
7 * redistribution of this file, and for a DISCLAIMER OF ALL
8 * WARRANTIES.
9 *
10 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
11 *
12 * RCS @(#) $Id: TclRuntimeError.java,v 1.1.1.1 1998/10/14 21:09:14 cvsadmin Exp $
13 *
14 */
15 using System;
16 namespace tcl.lang
17 {
18  
19 /// <summary> Signals that a unrecoverable run-time error in the interpreter.
20 /// Similar to the panic() function in C.
21 /// </summary>
22 public class TclRuntimeError : System.SystemException
23 {
24 /// <summary> Constructs a TclRuntimeError with the specified detail
25 /// message.
26 ///
27 /// </summary>
28 /// <param name="s">the detail message.
29 /// </param>
30 public TclRuntimeError( string s )
31 : base( s )
32 {
33 }
34 public TclRuntimeError( string s, Exception inner )
35 : base( s, inner )
36 {
37 }
38 }
39 }