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 9"""Exception classes. 10""" 11 12 13class FileNotFoundError(Exception): 14 """File not found exception. 15 """ 16 pass 17 18 19class SignalProcessingException(Exception): 20 """Signal processing exception. 21 """ 22 pass 23 24 25class InputMixerException(Exception): 26 """Input mixer exception. 27 """ 28 pass 29 30 31class InputSignalCreatorException(Exception): 32 """Input signal creator exception. 33 """ 34 pass 35 36 37class EvaluationScoreException(Exception): 38 """Evaluation score exception. 39 """ 40 pass 41 42 43class InitializationException(Exception): 44 """Initialization exception. 45 """ 46 pass 47