mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 17:16:25 +00:00
49 lines
784 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|