libdb/test/csharp/TestException.cs
2011-09-13 13:44:24 -04:00

49 lines
784 B
C#

/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2009, 2011 Oracle and/or its affiliates. All rights reserved.
*
*/
using System;
using System.Collections.Generic;
using System.Text;
namespace CsharpAPITest
{
public class TestException : ApplicationException
{
public TestException(string name)
: base(name)
{
}
public TestException() : base()
{
}
}
public class ConfigNotFoundException : TestException
{
public ConfigNotFoundException(string name)
: base(name)
{
}
}
public class InvalidConfigException : TestException
{
public InvalidConfigException(string name)
: base(name)
{
}
}
public class ExpectedTestException : TestException
{
public ExpectedTestException()
: base()
{
}
}
}