Skip to content

Commit a801c45

Browse files
committed
Update Apigen
1 parent 1485519 commit a801c45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/client/Apigen/src/apigen/Apigen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ public void EmitMethodArgumentReader()
941941
EmitLine(" return result;");
942942
EmitLine(" }");
943943
EmitLine("");
944-
EmitLine(" throw new Client.Impl.UnknownClassOrMethodException(classId, methodId);");
944+
EmitLine(" throw new Client.Exceptions.UnknownClassOrMethodException(classId, methodId);");
945945
EmitLine(" }");
946946
EmitLine("");
947947
EmitLine(" internal Client.Impl.MethodBase DecodeMethodFrom(ushort classId, ushort methodId)");
@@ -974,7 +974,7 @@ public void EmitContentHeaderReader()
974974
EmitLine($" case {c.Index}: return new {MangleClass(c.Name)}Properties();");
975975
}
976976
}
977-
EmitLine(" default: throw new Client.Impl.UnknownClassOrMethodException(classId, 0);");
977+
EmitLine(" default: throw new Client.Exceptions.UnknownClassOrMethodException(classId, 0);");
978978
EmitLine(" }");
979979
EmitLine(" }");
980980
}

0 commit comments

Comments
 (0)