您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
859 B
23 行
859 B
namespace Unity.Services.Core
|
|
{
|
|
/// <summary>
|
|
/// Exception to use two registered <see cref="IInitializablePackage"/> depend on the other.
|
|
/// </summary>
|
|
public class CircularDependencyException : ServicesInitializationException
|
|
{
|
|
/// <summary>
|
|
/// Initialize a new instance of the <see cref="ServicesInitializationException" /> class.
|
|
/// </summary>
|
|
public CircularDependencyException() {}
|
|
|
|
/// <summary>
|
|
/// Initialize a new instance of the <see cref="ServicesInitializationException" />
|
|
/// class with a specified error message.
|
|
/// </summary>
|
|
/// <param name="message">
|
|
/// The error message that explains the reason for the exception.
|
|
/// </param>
|
|
public CircularDependencyException(string message)
|
|
: base(message) {}
|
|
}
|
|
}
|