コード例 #1
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioRateLimitException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioRateLimitException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #2
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioConflictException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioConflictException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #3
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioGoneException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioGoneException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #4
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioNotFoundException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioNotFoundException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #5
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioNotFoundException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioNotFoundException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #6
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioException(int status, PodioError error)
 {
     this.Error  = error;
     this.Status = status;
 }
コード例 #7
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioBadRequestException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioBadRequestException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #8
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioException(int status, PodioError error)
        {
            this.Error = error;
            this.Status = status;
        }
コード例 #9
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioInvalidGrantException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioInvalidGrantException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #10
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioServerException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioServerException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #11
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioUnavailableException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioUnavailableException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #12
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioRateLimitException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioRateLimitException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #13
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioGoneException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioGoneException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #14
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioConflictException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioConflictException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #15
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioServerException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioServerException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #16
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioBadRequestException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioBadRequestException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #17
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioUnavailableException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioUnavailableException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #18
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioAuthorizationException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioAuthorizationException(int status, PodioError error)
            : base(status, error)
        {
        }
コード例 #19
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioInvalidGrantException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioInvalidGrantException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #20
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioForbiddenException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioForbiddenException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #21
0
ファイル: PodioException.cs プロジェクト: vicentor/PodioPCL
 /// <summary>
 /// Initializes a new instance of the <see cref="PodioAuthorizationException"/> class.
 /// </summary>
 /// <param name="status">The status.</param>
 /// <param name="error">The error.</param>
 public PodioAuthorizationException(int status, PodioError error)
     : base(status, error)
 {
 }
コード例 #22
0
ファイル: PodioException.cs プロジェクト: AjmalVh/PodioPCL
		/// <summary>
		/// Initializes a new instance of the <see cref="PodioForbiddenException"/> class.
		/// </summary>
		/// <param name="status">The status.</param>
		/// <param name="error">The error.</param>
        public PodioForbiddenException(int status, PodioError error)
            : base(status, error)
        {
        }