Skip to content

Commit 8586ea6

Browse files
mjanuszcopybara-github
authored andcommitted
Add a lightweight errors module.
PiperOrigin-RevId: 967202670
1 parent ec7928d commit 8586ea6

2 files changed

Lines changed: 21 additions & 5 deletions

File tree

ffn/inference/errors.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Copyright 2018 Google Inc.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
# ==============================================================================
15+
"""Exceptions for FFN inference."""
16+
17+
18+
class TerminationException(Exception): # pylint: disable=g-bad-exception-name
19+
"""Indicates that the program has been requested to shut down."""
20+
pass

ffn/inference/executor.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,10 @@
3939

4040
from ..training import model as ffn_model
4141
from . import inference_utils
42+
from .errors import TerminationException
4243
from .inference_utils import timer_counter
4344

4445

45-
class TerminationException(Exception): # pylint: disable=g-bad-exception-name
46-
"""Indicates that the program has been requested to shut down."""
47-
pass
48-
49-
5046
class ExecutorInterface:
5147
"""Provides a client/server interface.
5248

0 commit comments

Comments
 (0)