Skip to content

Commit

Permalink
Added type name to exception message.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgsharp committed Sep 30, 2021
1 parent 86d301f commit be2ad61
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -731,7 +731,7 @@ private static Type GetImplementedIPredictionTransformer(Type type)
}
}

throw new ArgumentException($"Type IPredictionTransformer not implemented by provided type", nameof(type));
throw new ArgumentException($"Type IPredictionTransformer not implemented by provided type, {type}", nameof(type));
}

#endregion
Expand Down

0 comments on commit be2ad61

Please sign in to comment.