[Haskell-cafe] ITCC 2004, April 5 -7 2004 - Call For Participation, Las Vegas, USA

2004-03-01 Thread jolly
My apologies if this is a duplicate email.

CALL FOR PARTICIPATION - ITCC 2004
http://www.itcc.info 

International Conference on Information Technology- ITCC 2004 is going to be held in 
Las vegas, NV USA.ITCC is an international forum which brings together researchers and 
practitioners working on different aspects of Information Technology. It is a 
technical congregation where the latest theoretical and technological advances on 
Information Technology are presented and discussed.

This year's conference will bring together the world's most respected authorities on 
Information Retrieval, Operating Systems, Networks,Image/Video Processing, Digital 
Library, Coding  Data Compression,Watermarking, Simulation, Computer Graphics, 
Information Technology: Education, Curriculum  Accreditation, Information/Website 
Security, Data Mining and plethora of IT related technologies.(Pls check the advanced 
Program at our website). 

Whether you are a speaker, tutorial presenter, and/or sponsor, you will find ITCC 2004 
as the best forum to share and demonstrate your knowledge with the depth and breadth 
of Information Technology.For registration details,Visit our Website 
http://www.itcc.info/  
Any questions/Comments may be forwarded to [EMAIL PROTECTED] 
We look forward to your participation and hope to see you in Las Vegas! 

If  you do not wish to be included in this list, and/or do not wish to receive further 
announcements regarding ITCC, please reply at [EMAIL PROTECTED] Your email address 
will be removed immediately from the distribution list. 


With Best Regards

Vasu Jolly
The ITCC 2004 Conference Secretary






___
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe


Ignoring ExitExceptions

2003-07-21 Thread Tim Jolly
I'm looking for a way to return an arbitrary exit code to the OS.  The
standard `exitWith' function does the job, but unfortunately it also has
the side-effect of reporting an exception (I'm using GHC 6.0, with
Control.Exception imported for other purposes).
When a fatal error occurs, my program will already have issued a
meaningful error message, and the added *** Exception: exit:
ExitFailure 2 will serve only to confuse users.  Unfortunately it
appears that the only way to return an exit code is to let an
ExitException pass unhandled.
All I'm really asking for is a way to use the exitWith function as
defined in Haskell 98, along with the exception extensions provided in
Control.Exception.  Is there perhaps some way to prevent ExitExceptions
from being reported, or a way to exclude certain types of exception from
the handling in Control.Exception?  Or can anyone suggest an alternative
approach?
-- TJ

___
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe