1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle
.MicroKernel
18 using System
.Runtime
.Serialization
;
21 /// Exception threw when a request for a component
22 /// cannot be satisfied because the component does not
23 /// exist in the container
26 public class ComponentNotFoundException
: ApplicationException
29 /// Initializes a new instance of the <see cref="ComponentNotFoundException"/> class.
31 /// <param name="name">The name.</param>
32 public ComponentNotFoundException(String name
) :
33 base( String
.Format("No component for key {0} was found", name
) )
38 /// Initializes a new instance of the <see cref="ComponentNotFoundException"/> class.
40 /// <param name="service">The service.</param>
41 public ComponentNotFoundException(Type service
) :
42 base( String
.Format("No component for supporting the service {0} was found", service
.FullName
) )
47 /// Initializes a new instance of the <see cref="ComponentNotFoundException"/> class.
49 /// <param name="info">The object that holds the serialized object data.</param>
50 /// <param name="context">The contextual information about the source or destination.</param>
51 public ComponentNotFoundException(SerializationInfo info
, StreamingContext context
) : base(info
, context
)