Enum ConferenceErrorType
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
会議エラータイプConferenceError
で指定できるエラーのタイプを定義する列挙型。
列挙型を呼び出すには、その親クラス、名前、プロパティを呼び出します。たとえば、
ConferenceDataService.ConferenceErrorType.AUTHENTICATION
です。
プロパティ
プロパティ | タイプ | 説明 |
AUTHENTICATION | Enum | 会議データの生成中に認証エラーが発生しました。 |
CONFERENCE_SOLUTION_FORBIDDEN | Enum | ユーザーは、選択した会議ソリューションを使用できません(ただし、アドオンで提供されている他のソリューションを使用できる場合があります)。 |
PERMANENT | Enum | 会議データの生成中に永続的なエラーが発生しました。 |
PERMISSION_DENIED | Enum | ユーザーはサードパーティ製会議システムでアクションを実行できません。 |
TEMPORARY | Enum | 会議データの生成中に一時的なエラーが発生しました。 |
UNKNOWN | Enum | 会議データの生成中に不明なエラーが発生しました。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003eConferenceErrorType\u003c/code\u003e is an enum used to define error types within a \u003ccode\u003eConferenceError\u003c/code\u003e object in Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eThese error types include authentication issues, forbidden conference solutions, permanent or temporary errors during data generation, permission problems, and unknown errors.\u003c/p\u003e\n"],["\u003cp\u003eTo reference a specific error type, use the syntax: \u003ccode\u003eConferenceDataService.ConferenceErrorType.[ErrorType]\u003c/code\u003e, for example, \u003ccode\u003eConferenceDataService.ConferenceErrorType.AUTHENTICATION\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# Enum ConferenceErrorType\n\nConferenceErrorType\n\nEnum that defines the types of errors that you can specify in a [ConferenceError](/apps-script/reference/conference-data/conference-error).\n\nTo call an enum, you call its parent class, name, and property. For example, `\nConferenceDataService.ConferenceErrorType.AUTHENTICATION`. \n\n### Properties\n\n| Property | Type | Description |\n|---------------------------------|--------|--------------------------------------------------------------------------------------------------------------------------------------|\n| `AUTHENTICATION` | `Enum` | An authentication error during conference data generation. |\n| `CONFERENCE_SOLUTION_FORBIDDEN` | `Enum` | The user is not allowed to use the selected conference solution (but might be allowed to use other solutions offered by the add-on). |\n| `PERMANENT` | `Enum` | A permanent error during conference data generation. |\n| `PERMISSION_DENIED` | `Enum` | The user isn't allowed to perform an action in the third-party conferencing system. |\n| `TEMPORARY` | `Enum` | A temporary error during conference data generation. |\n| `UNKNOWN` | `Enum` | An unknown error during conference data generation. |"]]