[geeklog-cvs] Auth_Enterprise/Server AEServerProviderFactory.class.php,1.1.1.1,1.2

tony at iowaoutdoors.org tony at iowaoutdoors.org
Fri Jun 18 17:36:45 EDT 2004


Update of /var/cvs/Auth_Enterprise/Server
In directory www:/tmp/cvs-serv18905

Modified Files:
	AEServerProviderFactory.class.php 
Log Message:
Fixed so class throws all exceptions back up the calling chain where it should to the client where the calling application can figure out what to do.

Index: AEServerProviderFactory.class.php
===================================================================
RCS file: /var/cvs/Auth_Enterprise/Server/AEServerProviderFactory.class.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** AEServerProviderFactory.class.php	15 Jun 2004 15:19:27 -0000	1.1.1.1
--- AEServerProviderFactory.class.php	18 Jun 2004 21:36:43 -0000	1.2
***************
*** 60,68 ****
              return new $provider($appId);
          } catch (AEUnableToConnect $e) {
!             echo $e->getMessage();
!             exit;
          } catch (AEUnknownException $e) {
!             echo $e->getMessgae();
!             exit;
          }
      }
--- 60,66 ----
              return new $provider($appId);
          } catch (AEUnableToConnect $e) {
!             throw $e;
          } catch (AEUnknownException $e) {
!             throw $e;
          }
      }




More information about the geeklog-cvs mailing list