• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS.  All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8"""Exception classes.
9"""
10
11
12class FileNotFoundError(Exception):
13    """File not found exception.
14  """
15    pass
16
17
18class SignalProcessingException(Exception):
19    """Signal processing exception.
20  """
21    pass
22
23
24class InputMixerException(Exception):
25    """Input mixer exception.
26  """
27    pass
28
29
30class InputSignalCreatorException(Exception):
31    """Input signal creator exception.
32  """
33    pass
34
35
36class EvaluationScoreException(Exception):
37    """Evaluation score exception.
38  """
39    pass
40
41
42class InitializationException(Exception):
43    """Initialization exception.
44  """
45    pass
46