2020-01-17 06:34:18 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2020-01-17 06:34:18 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <libsolutil/Exceptions.h>
|
|
|
|
|
|
|
|
namespace solidity::phaser
|
|
|
|
{
|
|
|
|
|
2020-02-28 02:48:20 +00:00
|
|
|
struct BadInput: virtual util::Exception {};
|
|
|
|
struct InvalidProgram: virtual BadInput {};
|
|
|
|
struct NoInputFiles: virtual BadInput {};
|
|
|
|
struct MissingFile: virtual BadInput {};
|
2020-01-17 06:34:18 +00:00
|
|
|
|
2020-02-21 23:48:35 +00:00
|
|
|
struct FileOpenError: virtual util::Exception {};
|
|
|
|
struct FileReadError: virtual util::Exception {};
|
2020-02-22 00:39:33 +00:00
|
|
|
struct FileWriteError: virtual util::Exception {};
|
2020-02-21 23:48:35 +00:00
|
|
|
|
2020-01-17 06:34:18 +00:00
|
|
|
}
|