~a-schlapsi/nunit-3.0/linux-makefile

« back to all changes in this revision

Viewing changes to src/framework/Exceptions/InconclusiveException.cs

  • Committer: Andreas Schlapsi
  • Date: 2010-01-23 23:14:05 UTC
  • mfrom: (18.1.137 work)
  • Revision ID: a.schlapsi@gmx.at-20100123231405-17deqoh18nfnbq1j
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
22
// ***********************************************************************
23
23
 
24
 
#if !NUNITLITE
25
24
namespace NUnit.Framework
26
25
{
27
26
    using System;
28
 
#if !NETCF
29
 
    using System.Runtime.Serialization;
30
 
#endif
 
27
 
31
28
    /// <summary>
32
29
    /// Thrown when a test executes inconclusively.
33
30
    /// </summary>
34
 
    /// 
 
31
#if !NETCF_1_0
35
32
    [Serializable]
 
33
#endif
36
34
    public class InconclusiveException : System.Exception
37
35
    {
38
36
        /// <param name="message">The error message that explains 
54
52
        /// <summary>
55
53
        /// Serialization Constructor
56
54
        /// </summary>
57
 
        protected InconclusiveException(SerializationInfo info,
58
 
            StreamingContext context)
 
55
        protected InconclusiveException(System.Runtime.Serialization.SerializationInfo info,
 
56
            System.Runtime.Serialization.StreamingContext context)
59
57
            : base(info, context)
60
58
        { }
61
59
#endif
62
60
    }
63
61
}
64
 
#endif