Files
Yasuhiro KIMURA 9678929700 Update to 18.1.40
2020-07-24 01:10:28 +09:00

50 lines
777 B
C#

/*-
* Copyright (c) 2009, 2020 Oracle and/or its affiliates. All rights reserved.
*
* See the file LICENSE for license information.
*
*/
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()
{
}
}
}