Tadashi Okoshi
slash****@users*****
2005年 6月 30日 (木) 03:15:57 JST
Index: affelio/lib/Affelio/exception/SystemException.pm diff -u /dev/null affelio/lib/Affelio/exception/SystemException.pm:1.1 --- /dev/null Thu Jun 30 03:15:57 2005 +++ affelio/lib/Affelio/exception/SystemException.pm Thu Jun 30 03:15:57 2005 @@ -0,0 +1,18 @@ +# Affelio: Open social networking software +# Copyright 2004-2005 Fish Grove +# For more information, please refer following web site. +# http://affelio.jp/ (Japan) +# http://affelio.jp/ (USA and other area) +# +# $Id: SystemException.pm,v 1.1 2005/06/29 18:15:57 slash5234 Exp $ + +use strict; +use Error; +$Error::Debug = 1; + +package Affelio::exception::SystemException; +{ + use base qw/Error::Simple/; + use overload ('""' => 'stringify'); +} +1;