00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 package cast;
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 public class ComponentCreationException extends CASTException
00024 {
00025 public ComponentCreationException()
00026 {
00027 super();
00028 }
00029
00030 public ComponentCreationException(String message)
00031 {
00032 super(message);
00033 }
00034
00035 public String
00036 ice_name()
00037 {
00038 return "cast::ComponentCreationException";
00039 }
00040
00041 public void
00042 __write(IceInternal.BasicStream __os)
00043 {
00044 __os.writeString("::cast::ComponentCreationException");
00045 __os.startWriteSlice();
00046 __os.endWriteSlice();
00047 super.__write(__os);
00048 }
00049
00050 public void
00051 __read(IceInternal.BasicStream __is, boolean __rid)
00052 {
00053 if(__rid)
00054 {
00055 __is.readString();
00056 }
00057 __is.startReadSlice();
00058 __is.endReadSlice();
00059 super.__read(__is, true);
00060 }
00061
00062 public void
00063 __write(Ice.OutputStream __outS)
00064 {
00065 __outS.writeString("::cast::ComponentCreationException");
00066 __outS.startSlice();
00067 __outS.endSlice();
00068 super.__write(__outS);
00069 }
00070
00071 public void
00072 __read(Ice.InputStream __inS, boolean __rid)
00073 {
00074 if(__rid)
00075 {
00076 __inS.readString();
00077 }
00078 __inS.startSlice();
00079 __inS.endSlice();
00080 super.__read(__inS, true);
00081 }
00082 }