Added container accessor to Castle.Core
[castle.git] / InversionOfControl / Castle.MicroKernel / Exceptions / ComponentNotFoundException.cs
blobb290f727da3693dd18d9489fc0a10ad9811c9a7e
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
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
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
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
17 using System;
18 using System.Runtime.Serialization;
20 /// <summary>
21 /// Exception threw when a request for a component
22 /// cannot be satisfied because the component does not
23 /// exist in the container
24 /// </summary>
25 [Serializable]
26 public class ComponentNotFoundException : ApplicationException
28 /// <summary>
29 /// Initializes a new instance of the <see cref="ComponentNotFoundException"/> class.
30 /// </summary>
31 /// <param name="name">The name.</param>
32 public ComponentNotFoundException(String name) :
33 base( String.Format("No component for key {0} was found", name) )
37 /// <summary>
38 /// Initializes a new instance of the <see cref="ComponentNotFoundException"/> class.
39 /// </summary>
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) )
46 /// <summary>
47 /// Initializes a new instance of the <see cref="ComponentNotFoundException"/> class.
48 /// </summary>
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)