don't throw away file/line when throwing new YAMLExceptions

This commit is contained in:
Cameron Ross 2018-07-17 20:41:59 -03:00
parent 46db7d3ba2
commit 95872e6d0e
No known key found for this signature in database
GPG key ID: 777897D98DC91C54
2 changed files with 7 additions and 7 deletions

View file

@ -225,7 +225,7 @@ struct Dumper(Range)
catch(YAMLException e)
{
throw new YAMLException("Unable to dump YAML to stream "
~ name_ ~ " : " ~ e.msg);
~ name_ ~ " : " ~ e.msg, e.file, e.line);
}
}
@ -251,7 +251,7 @@ struct Dumper(Range)
catch(YAMLException e)
{
throw new YAMLException("Unable to emit YAML to stream "
~ name_ ~ " : " ~ e.msg);
~ name_ ~ " : " ~ e.msg, e.file, e.line);
}
}
}

View file

@ -71,7 +71,7 @@ struct Loader
catch(FileException e)
{
throw new YAMLException("Unable to open file %s for YAML loading: %s"
.format(filename, e.msg));
.format(filename, e.msg), e.file, e.line);
}
}
/// ditto
@ -208,7 +208,7 @@ struct Loader
catch(YAMLException e)
{
throw new YAMLException("Unable to load YAML from %s : %s"
.format(name_, e.msg));
.format(name_, e.msg), e.file, e.line);
}
}
@ -279,7 +279,7 @@ struct Loader
catch(YAMLException e)
{
throw new YAMLException("Unable to load YAML from %s : %s "
.format(name_, e.msg));
.format(name_, e.msg), e.file, e.line);
}
}
// Scan and return all tokens. Used for debugging.
@ -297,7 +297,7 @@ struct Loader
catch(YAMLException e)
{
throw new YAMLException("Unable to scan YAML from stream " ~
name_ ~ " : " ~ e.msg);
name_ ~ " : " ~ e.msg, e.file, e.line);
}
}
@ -311,7 +311,7 @@ struct Loader
catch(YAMLException e)
{
throw new YAMLException("Unable to scan YAML from stream " ~
name_ ~ " : " ~ e.msg);
name_ ~ " : " ~ e.msg, e.file, e.line);
}
}