mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-01 10:26:51 +03:00
Summary: Pull Request resolved: https://github.com/facebookincubator/zstrong/pull/723 Reviewed By: grievejia Differential Revision: D54471437 fbshipit-source-id: bc644553e31464ceb632034e4ce3f05ba30fbbcd
20 lines
573 B
Python
20 lines
573 B
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# pyre-unsafe
|
|
|
|
|
|
class TransientFailure(Exception):
|
|
"""Raising this error causes getdeps to return with an error code
|
|
that Sandcastle will consider to be a retryable transient
|
|
infrastructure error"""
|
|
|
|
pass
|
|
|
|
|
|
class ManifestNotFound(Exception):
|
|
def __init__(self, manifest_name) -> None:
|
|
super(Exception, self).__init__("Unable to find manifest '%s'" % manifest_name)
|