libdb/test/csharp/TestException.cs
2012-11-14 16:35:20 -05:00

49 lines
784 B
C#

/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2009, 2012 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()
{
}
}
}