Ejemplo n.º 1
0
        void Gallery_Error(object sender, EventArgs e)
        {
            // Grab a handle to the exception that is giving us grief.
            Exception ex = Server.GetLastError();

            if (Context != null)
            {
                ex = Context.Error;
            }

            AppErrorController.HandleGalleryException(ex);
        }
Ejemplo n.º 2
0
        private void Gallery_Error(object sender, EventArgs e)
        {
            // Grab a handle to the exception that is giving us grief.
            Exception ex = Server.GetLastError();

            if (Context != null)
            {
                ex = Context.Error;
            }

            if (ex != null)
            {
                try
                {
                    AppErrorController.HandleGalleryException(ex, GalleryId);
                }
                catch (Exception) { }
            }
        }