Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "The invocation of the constructor on type that matches the specified binding constraints threw an exception." mean?

Tags:

What does "The invocation of the constructor on type that matches the specified binding constraints threw an exception." mean in silverlight?

like image 481
Jonathan Allen Avatar asked Jul 08 '11 21:07

Jonathan Allen


1 Answers

Silverlight called your constructor, and your constructor threw an exception.

You can find the original exception from your constructor in the InnerException.

like image 74
SLaks Avatar answered Oct 20 '22 18:10

SLaks