Skip to content
Snippets Groups Projects
Commit a201c64c authored by Irina Muntean's avatar Irina Muntean
Browse files

Correct number of tabs in new line.

Issue-Ref: 4168
Issue-Url: af3#4168



Signed-off-by: default avatarIrina Muntean <muntean@fortiss.org>
parent 6959c91c
No related branches found
No related tags found
1 merge request!159Add caught exception to list and throw new exception
......@@ -54,8 +54,8 @@ public class AllChainTransformationsFailedException extends ChainTransformationF
if(cause != null) {
msg += tabs + "Cause:\n";
if(cause instanceof AllChainTransformationsFailedException)
msg += tabs + ((AllChainTransformationsFailedException)cause)
.getMessage(counter + 1) + "\n";
msg += ((AllChainTransformationsFailedException)cause).getMessage(counter + 1) +
"\n";
else
msg += tabs + cause.getMessage() + "\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment