Commit 5c604545 by Aaron Leung

Basic error/exception object.

parent a5792b84
namespace Sass {
struct Error {
enum Type { read, write, syntax, evaluation };
size_t line_number;
string file_name;
string message;
Error(size_t line_number, string file_name, string message)
: line_number(line_number), file_name(file_name), message(message)
{ }
};
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment