/[dotgnu-pnet]/pnetlib/System.Xml/Xsl/XsltCompileException.cs
ViewVC logotype

Diff of /pnetlib/System.Xml/Xsl/XsltCompileException.cs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by t3rmin4t0r, Tue Feb 22 11:21:23 2005 UTC revision 1.4 by ktreichel, Sun Oct 30 17:50:17 2005 UTC
# Line 29  using System.Runtime.Serialization; Line 29  using System.Runtime.Serialization;
29    
30  namespace System.Xml.Xsl  namespace System.Xml.Xsl
31  {  {
32    #if CONFIG_SERIALIZATION
33            [Serializable]
34    #endif
35          public class XsltCompileException: XsltException          public class XsltCompileException: XsltException
36          {          {
37                  [TODO]  #if CONFIG_FRAMEWORK_2_0
38                    public XsltCompileException() : base(String.Empty, null)
39                    {
40                    }
41    
42                    public XsltCompileException(string message) : base(message, null)
43                    {
44                    }
45    
46                    public XsltCompileException(string message, Exception innerException)
47                            : base(message, innerException)
48                    {
49                    }
50    #endif
51    
52                    protected XsltCompileException(SerializationInfo info, StreamingContext context)
53                            : base (info, context)
54                    {
55                    }
56    
57                  public XsltCompileException(Exception inner, String sourceUri,                  public XsltCompileException(Exception inner, String sourceUri,
58                                                                          int lineNumber, int linePosition)                                                                          int lineNumber, int linePosition)
59                                                                          : base(sourceUri, inner)                                                                          : base(sourceUri, lineNumber, linePosition,
60                                                                                            inner)
61                  {                  {
                         throw new NotImplementedException(".ctor");  
62                  }                  }
63    
64  #if CONFIG_SERIALIZATION  #if CONFIG_SERIALIZATION
65    
                 [TODO]  
66                  public override void GetObjectData(SerializationInfo info,                  public override void GetObjectData(SerializationInfo info,
67                                                                                          StreamingContext context)                                                                                          StreamingContext context)
68                  {                  {
69                          throw new NotImplementedException("GetObjectData");                          base.GetObjectData (info, context);
70                  }                  }
71    
72  #endif  #endif
73    
74                  [TODO]  #if !CONFIG_FRAMEWORK_2_0
75                  public override String Message                  public override String Message
76                  {                  {
77                          get                          get
78                          {                          {
79                                  throw new NotImplementedException("Message");                                  return base.Message;
80                          }                          }
81    
82                  }                  }
83    #endif
84          }          }
85  }//namespace  }//namespace
86  #endif /* CONFIG_XSL */  #endif /* CONFIG_XSL */

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26