The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
430 B
22 lines
430 B
# SPDX-License-Identifier: Apache-2.0 |
|
# Copyright 2013-2021 The Meson development team |
|
|
|
from ..mesonlib import MesonException |
|
|
|
class InterpreterException(MesonException): |
|
pass |
|
|
|
class InvalidCode(InterpreterException): |
|
pass |
|
|
|
class InvalidArguments(InterpreterException): |
|
pass |
|
|
|
class SubdirDoneRequest(BaseException): |
|
pass |
|
|
|
class ContinueRequest(BaseException): |
|
pass |
|
|
|
class BreakRequest(BaseException): |
|
pass
|
|
|