| Package | com.soma.errors |
| Class | public class CairngormMessage |
All messages/error codes must match the regular expression: C\d{4}[EWI] 1. The application prefix e.g. 'C'. 2. A four-digit error code that must be unique. 3. A single character severity indicator (E: error, W: warning, I: informational).
| Constant | Defined by | ||
|---|---|---|---|
| BACKGROUND_NOT_FOUND : String = "C0010E: Background not found in BackgroundManager" [static]
| CairngormMessage | ||
| COMMAND_ALREADY_REGISTERED : String = "C0001E: This command is already registered in SomaController" [static]
| CairngormMessage | ||
| COMMAND_NOT_FOUND : String = "C0002E: Command not found in SomaController" [static]
| CairngormMessage | ||
| COMMAND_NOT_REGISTERED : String = "C0003E: Command not registered in SomaController" [static]
| CairngormMessage | ||
| LAYOUT_HEIGHT_MISSING : String = "C0042E: height property for the fixed layout is missing in the XML definition" [static]
| CairngormMessage | ||
| LAYOUT_UNKNOWN : String = "C0040E: The layout property of the XML definition must be 'liquid' or 'fixed'" [static]
| CairngormMessage | ||
| LAYOUT_WIDTH_MISSING : String = "C0041E: width property for the fixed layout is missing in the XML definition" [static]
| CairngormMessage | ||
| PAGE_CLASS_NOT_FOUND : String = "C0022E: Error in PageManager.displayPage, the class of the page is not found. If the class exists, force the import using Soma.getInstance().registerClass(MyPageClass). You are trying to create an instance of the class: " [static]
| CairngormMessage | ||
| PAGE_DEPTH_NOT_FOUND : String = "C0021E: Depth not found in PageManager" [static]
| CairngormMessage | ||
| PAGE_ID_NOT_FOUND : String = "C0023E: Error in Page.init, the id of the page is not found. If your page is an external page, you must explicitely set the id in the init function, before the super.init(), example: override protected function init():void { id = "myExternalPageNodeID"; super.init(); }" [static]
| CairngormMessage | ||
| PAGE_TYPE_NOT_FOUND : String = "C0020E: Type not found in PageManager" [static]
| CairngormMessage | ||
| SOMA_INSTANCE_UPDATE : String = "C0060E: Error in Soma, incorrect Soma instance update" [static]
| CairngormMessage | ||
| SOMA_XML_NOT_VALID : String = "C0061E: Error in Soma, The XML Site Definition is not valid" [static]
| CairngormMessage | ||
| STYLESHEET_ALREADY_REGISTERED : String = "C0052E: stylesheet already registered in StyleManager" [static]
| CairngormMessage | ||
| STYLESHEET_GLOBAL_NOT_FOUND : String = "C0050E: global stylesheet not found, you must register a global stylesheet before starting Soma: Soma.getInstance().registerGloBalStyleSheet("css/flash_global.css");" [static]
| CairngormMessage | ||
| STYLESHEET_LOADING_ERROR : String = "C0053E: Error in StyleManager, the stylesheet couldn't be loaded" [static]
| CairngormMessage | ||
| STYLESHEET_NOT_FOUND : String = "C0051E: stylesheet not found in StyleManager, you must load the stylesheet: Soma.getInstance().styles.loadStyleSheet("stylesheetID", "css/stylesheet.css");" [static]
| CairngormMessage | ||
| UTILS_INSTANCE_NOT_DISPLAYOBJECT : String = "C0071E: Error, this class must extend DisplayObject" [static]
| CairngormMessage | ||
| UTILS_SINGLETON_INSTANTIATION_ERROR : String = "C0070E: Error Singleton, a Singleton can't be instantiated, you must use the getInstance method" [static]
| CairngormMessage | ||
| BACKGROUND_NOT_FOUND | constant |
public static const BACKGROUND_NOT_FOUND:String = "C0010E: Background not found in BackgroundManager"
| COMMAND_ALREADY_REGISTERED | constant |
public static const COMMAND_ALREADY_REGISTERED:String = "C0001E: This command is already registered in SomaController"
| COMMAND_NOT_FOUND | constant |
public static const COMMAND_NOT_FOUND:String = "C0002E: Command not found in SomaController"
| COMMAND_NOT_REGISTERED | constant |
public static const COMMAND_NOT_REGISTERED:String = "C0003E: Command not registered in SomaController"
| LAYOUT_HEIGHT_MISSING | constant |
public static const LAYOUT_HEIGHT_MISSING:String = "C0042E: height property for the fixed layout is missing in the XML definition"
| LAYOUT_UNKNOWN | constant |
public static const LAYOUT_UNKNOWN:String = "C0040E: The layout property of the XML definition must be 'liquid' or 'fixed'"
| LAYOUT_WIDTH_MISSING | constant |
public static const LAYOUT_WIDTH_MISSING:String = "C0041E: width property for the fixed layout is missing in the XML definition"
| PAGE_CLASS_NOT_FOUND | constant |
public static const PAGE_CLASS_NOT_FOUND:String = "C0022E: Error in PageManager.displayPage, the class of the page is not found. If the class exists, force the import using Soma.getInstance().registerClass(MyPageClass). You are trying to create an instance of the class: "
| PAGE_DEPTH_NOT_FOUND | constant |
public static const PAGE_DEPTH_NOT_FOUND:String = "C0021E: Depth not found in PageManager"
| PAGE_ID_NOT_FOUND | constant |
public static const PAGE_ID_NOT_FOUND:String = "C0023E: Error in Page.init, the id of the page is not found. If your page is an external page, you must explicitely set the id in the init function, before the super.init(), example: override protected function init():void { id = "myExternalPageNodeID"; super.init(); }"
| PAGE_TYPE_NOT_FOUND | constant |
public static const PAGE_TYPE_NOT_FOUND:String = "C0020E: Type not found in PageManager"
| SOMA_INSTANCE_UPDATE | constant |
public static const SOMA_INSTANCE_UPDATE:String = "C0060E: Error in Soma, incorrect Soma instance update"
| SOMA_XML_NOT_VALID | constant |
public static const SOMA_XML_NOT_VALID:String = "C0061E: Error in Soma, The XML Site Definition is not valid"
| STYLESHEET_ALREADY_REGISTERED | constant |
public static const STYLESHEET_ALREADY_REGISTERED:String = "C0052E: stylesheet already registered in StyleManager"
| STYLESHEET_GLOBAL_NOT_FOUND | constant |
public static const STYLESHEET_GLOBAL_NOT_FOUND:String = "C0050E: global stylesheet not found, you must register a global stylesheet before starting Soma: Soma.getInstance().registerGloBalStyleSheet("css/flash_global.css");"
| STYLESHEET_LOADING_ERROR | constant |
public static const STYLESHEET_LOADING_ERROR:String = "C0053E: Error in StyleManager, the stylesheet couldn't be loaded"
| STYLESHEET_NOT_FOUND | constant |
public static const STYLESHEET_NOT_FOUND:String = "C0051E: stylesheet not found in StyleManager, you must load the stylesheet: Soma.getInstance().styles.loadStyleSheet("stylesheetID", "css/stylesheet.css");"
| UTILS_INSTANCE_NOT_DISPLAYOBJECT | constant |
public static const UTILS_INSTANCE_NOT_DISPLAYOBJECT:String = "C0071E: Error, this class must extend DisplayObject"
| UTILS_SINGLETON_INSTANTIATION_ERROR | constant |
public static const UTILS_SINGLETON_INSTANTIATION_ERROR:String = "C0070E: Error Singleton, a Singleton can't be instantiated, you must use the getInstance method"