=head1 ABSTRACT
Implements the STATUS_CONTINUE message, informing the client that it should
-continue to wait for a response to it's request.
+continue to wait for a response to its request.
=head1 SEE ALSO
The base class for Exception messages sent between client and server. This
is implemented on top of the C<OpenSRF::DomainObject::oilsResponse> class, and
-sets the default B<status> to C<Exception occured> and B<statusCode> to C<STATUS_BADREQUEST>.
+sets the default B<status> to C<Exception occurred> and B<statusCode> to C<STATUS_BADREQUEST>.
=cut
-$status = 'Exception occured';
+$status = 'Exception occurred';
$statusCode = STATUS_INTERNALSERVERERROR;
#-------------------------------------------------------------------------------
=head1 NAME
-OpenSRF::DomainObject::oilsMehtodException
+OpenSRF::DomainObject::oilsMethodException
=head1 SYNOPSIS
=head1 ABSTRACT
-The class for Exceptions that occur durring the B<CONNECT> phase of a session. This
+The class for Exceptions that occur during the B<CONNECT> phase of a session. This
is implemented on top of the C<OpenSRF::DomainObject::oilsException> class, and
sets the default B<status> to C<Connect Request Failed> and B<statusCode> to C<STATUS_NOTFOUND>.
=cut
-$status = 'A server error occured during method execution';
+$status = 'A server error occurred during method execution';
$statusCode = STATUS_INTERNALSERVERERROR;
# -------------------------------------------