Skip to content

Commit

Permalink
Fix pascal method stub exceptions (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
dabastynator authored and martinweismann committed Jan 8, 2019
1 parent 309c547 commit b966f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/buildimplementationpascal.go
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ func writePascalClassMethodDummyStub (method ComponentDefinitionMethod, w Langua
}

w.Writeln("begin");
w.Writeln(" raise E%sException (%s_ERROR_NOTIMPLEMENTED);", NameSpace, strings.ToUpper (NameSpace));
w.Writeln(" raise E%sException.Create (%s_ERROR_NOTIMPLEMENTED);", NameSpace, strings.ToUpper (NameSpace));
w.Writeln("end;");
w.Writeln("");

Expand Down

0 comments on commit b966f52

Please sign in to comment.