blob: 3360fbd9e6a8879d53b6b312d454184623a1b560 [file] [log] [blame]
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""A dummy exception subclass used by core/discover.py's unit tests."""
from telemetry.internal.testing.discoverable_classes import discover_dummyclass
class DummyExceptionWithParameterImpl2(discover_dummyclass.DummyException):
def __init__(self, parameter1, parameter2):
super(DummyExceptionWithParameterImpl2, self).__init__()
del parameter1, parameter2