| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.CodeDom CodeThrowExceptionStatement Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- [Serializable]
- public class CodeThrowExceptionStatement : CodeStatement {
- CodeExpression toThrow;
-
- public CodeThrowExceptionStatement () {}
- public CodeThrowExceptionStatement (CodeExpression toThrow)
- {
- this.toThrow = toThrow;
- }
- public CodeExpression ToThrow {
- get {
- return toThrow;
- }
- set {
- toThrow = value;
- }
- }
- }
- }
|