Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions MainClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ private static void XicParametersParsing(string[] args)
}
else
{
Log.Error("An unexpected error occured:");
Log.Error("An unexpected error occurred:");
Log.Error(ex.ToString());
}
}
Expand Down Expand Up @@ -473,7 +473,7 @@ private static void SpectrumQueryParametersParsing(string[] args)
}
else
{
Log.Error("An unexpected error occured:");
Log.Error("An unexpected error occurred:");
Log.Error(ex.ToString());
}
}
Expand Down Expand Up @@ -853,8 +853,8 @@ private static void RegularParametersParsing(string[] args)
catch (Amazon.S3.AmazonS3Exception ex)
{
Log.Error(!ex.Message.IsNullOrEmpty()
? "An Amazon S3 exception occured: " + ex.Message
: "An Amazon S3 exception occured: " + ex);
? "An Amazon S3 exception occurred: " + ex.Message
: "An Amazon S3 exception occurred: " + ex);
}
catch (Exception ex)
{
Expand All @@ -864,7 +864,7 @@ private static void RegularParametersParsing(string[] args)
}
else
{
Log.Error("An unexpected error occured:");
Log.Error("An unexpected error occurred:");
Log.Error(ex.ToString());
}
}
Expand Down
2 changes: 1 addition & 1 deletion RawFileParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private static void TryProcessFile(ParseInput parseInput)
}
else
{
Log.Error("An unexpected error occured (see below)");
Log.Error("An unexpected error occurred (see below)");
Log.Error(ex.ToString());
parseInput.NewError();
}
Expand Down
Loading