Skip to content

Commit ef13ae4

Browse files
author
Chris Santero
committed
fix fragmented error message
1 parent 44c83ae commit ef13ae4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

JSONAPI/Core/JsonApiConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class JsonApiConfiguration
2222
/// </summary>
2323
public JsonApiConfiguration(IModelManager modelManager)
2424
{
25-
if (modelManager == null) throw new Exception("You must provide ");
25+
if (modelManager == null) throw new Exception("You must provide a model manager to begin configuration.");
2626

2727
_modelManager = modelManager;
2828
_payloadBuilderFactory = () => new DefaultQueryablePayloadBuilderConfiguration().GetBuilder(modelManager);

0 commit comments

Comments
 (0)