This is an automated email from the ASF dual-hosted git repository.

pushminakazi pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 62d6fc7  Create ScriptTimeoutError.as
62d6fc7 is described below

commit 62d6fc78ca50178e208491acc9360b56f2f70403
Author: pashminakazi <42200979+pashminak...@users.noreply.github.com>
AuthorDate: Fri Mar 12 20:39:20 2021 +0500

    Create ScriptTimeoutError.as
---
 .../main/royale/mx/errors/ScriptTimeoutError.as    | 85 ++++++++++++++++++++++
 1 file changed, 85 insertions(+)

diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/errors/ScriptTimeoutError.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/errors/ScriptTimeoutError.as
new file mode 100644
index 0000000..0219b28
--- /dev/null
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/errors/ScriptTimeoutError.as
@@ -0,0 +1,85 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+package mx.errors
+{
+COMPILE::SWF{
+import flash.errors.ScriptTimeoutError;
+}
+
+/* 
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion BlazeDS 4
+ *  @productversion LCDS 3 
+ * 
+ *  @royalesuppresspublicvarwarning
+ */
+COMPILE::SWF
+public class ScriptTimeoutError extends flash.errors.ScriptTimeoutError
+{
+    
//--------------------------------------------------------------------------
+    //
+    // Constructor
+    // 
+    
//--------------------------------------------------------------------------
+    
+    /**
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 9
+     *  @playerversion AIR 1.1
+     *  @productversion BlazeDS 4
+     *  @productversion LCDS 3 
+     */
+    public function ScriptTimeoutError(message:String = "")
+    {
+        super(message);
+    }
+    
+
+}
+
+COMPILE::JS
+public class ScriptTimeoutError
+{
+    
//--------------------------------------------------------------------------
+    //
+    // Constructor
+    // 
+    
//--------------------------------------------------------------------------
+    
+    /**
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 9
+     *  @playerversion AIR 1.1
+     *  @productversion BlazeDS 4
+     *  @productversion LCDS 3 
+     */
+    public function ScriptTimeoutError(message:String = "")
+    {
+        super();
+    }
+    
+
+}
+
+}

Reply via email to