@@ -131,7 +131,7 @@ public BrowserSettings BrowserSettings
131131 {
132132 if ( browserCreated )
133133 {
134- throw new Exception ( "Browser has already been created. BrowserSettings must be" +
134+ throw new Exception ( "Browser has already been created. BrowserSettings must be " +
135135 "set before the underlying CEF browser is created." ) ;
136136 }
137137
@@ -157,7 +157,7 @@ public IRequestContext RequestContext
157157 {
158158 if ( browserCreated )
159159 {
160- throw new Exception ( "Browser has already been created. RequestContext must be" +
160+ throw new Exception ( "Browser has already been created. RequestContext must be " +
161161 "set before the underlying CEF browser is created." ) ;
162162 }
163163 if ( value != null && value . GetType ( ) != typeof ( RequestContext ) )
@@ -2299,7 +2299,7 @@ public void RegisterJsObject(string name, object objectToBind, BindingOptions op
22992299
23002300 if ( InternalIsBrowserInitialized ( ) )
23012301 {
2302- throw new Exception ( "Browser is already initialized. RegisterJsObject must be" +
2302+ throw new Exception ( "Browser is already initialized. RegisterJsObject must be " +
23032303 "called before the underlying CEF browser is created." ) ;
23042304 }
23052305
@@ -2340,7 +2340,7 @@ public void RegisterAsyncJsObject(string name, object objectToBind, BindingOptio
23402340
23412341 if ( InternalIsBrowserInitialized ( ) )
23422342 {
2343- throw new Exception ( "Browser is already initialized. RegisterJsObject must be" +
2343+ throw new Exception ( "Browser is already initialized. RegisterJsObject must be " +
23442344 "called before the underlying CEF browser is created." ) ;
23452345 }
23462346 var objectRepository = managedCefBrowserAdapter . JavascriptObjectRepository ;
0 commit comments