⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forumexceptiontype.cs

📁 本系统是在asp版《在线文件管理器》的基础上设计制作
💻 CS
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
//     Copyright (c) Telligent Systems Corporation.  All rights reserved.
// </copyright> 
//------------------------------------------------------------------------------

using System;

namespace CommunityServer.Components {

    // Do Not change numbering
    public enum CSExceptionType {
        DataProvider = 0,
        AdministrationAccessDenied = 1,
        PostEditAccessDenied = 2,
        ModerateAccessDenied = 3,
        PostDuplicate = 4,
        FileNotFound = 5,
        SectionNotFound = 6,
        PostPendingModeration = 8,
        PostNotFound = 9,
        PostIDParameterNotSpecified = 10,
        PostProblem = 11,
        CreateUser = 36,
        UserAccountCreated = 7,
        UserAccountPending = 23,
        UserAccountCreatedAuto = 24,
        UserAccountDisapproved = 25,
        UserAccountBanned = 26,
        UserProfileUpdated = 13,
        UserNotFound = 14,
        UserPasswordChangeSuccess = 15,
        UserPasswordChangeFailed = 16,
        UserInvalidCredentials = 17,
        ForumNoUnansweredPosts = 18,
        PrivateMessagesDisabledByUser = 19,
        UserSearchNotFound = 20,
        ForumNoActivePosts = 21,
        PrivateMessageToSelfNotAllowd = 22,
        UserUnknownLoginError = 27,
        EmailUnableToSend = 28,
        UserAccountRegistrationDisabled = 29,
        UserLoginDisabled = 30,
        AccessDenied = 31,
        PostAccessDenied = 32,
        GroupNotFound = 33,
        EmailTemplateNotFound = 34,
        SearchUnknownError = 35,
        PostReplyAccessDenied = 36,
        PostAnnounceAccessDenied = 37,
        PostEditPermissionExpired = 38,
        PostLocked = 39,
        PostDeletePermissionExpired = 40,
        PostDeleteAccessDenied = 41,
        SkinNotSet = 42,
        SkinNotFound = 43,
        ReturnURLRequired = 44,
        SearchNoResults = 45,
		PostInvalidAttachmentType = 46,
		GeneralAccessDenied = 47,
		EmailSentToUser = 48,
		PostAttachmentTooLarge = 49,
		PostAttachmentsNotAllowed = 50,
        UserPasswordAnswerChangeSuccess = 51,
        UserPasswordAnswerChangeFailed = 52,
        RoleNotFound = 53,
        RoleUpdated = 54,
        RoleDeleted = 55,
        RoleOperationUnavailable = 56,
        ResourceNotFound = 57,
        PostCategoryNotFound = 58,
        WeblogNotFound = 59,
        WeblogPostNotFound = 60,
        PermissionApplicationUnknown = 61,
		RedirectFailure = 62,
        UnRegisteredSite = 63,
        SiteUrlDataProvider = 64,
		FloodDenied = 65,
		SiteSettingsInvalidXML = 66,
		PostDeleteAccessDeniedHasReplies = 67,
		ForumNoUnreadPosts = 68,
        UserPasswordResetSuccess = 69,

		UnauthorizedAccessException = 200, // 当操作系统因 I/O 错误或指定类型的安全错误而拒绝访问时所引发的异常
		SecurityException = 201,	// 检测到安全性错误时引发的异常。

        ApplicationStart = 997,
        ApplicationStop = 998,

        UnknownError = 999
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -