diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-29 07:54:38 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-29 07:54:38 +0000 |
commit | 79dbf702ddacdf69d06b05b2d9bb788bfc6b265b (patch) | |
tree | e367d6d1ba65d30139ae43891b52edfe71be8fca /lib/net/smtp.rb | |
parent | 7191aa1b41ecde2747988bc3070b28a27cca2aad (diff) | |
download | ruby-79dbf702ddacdf69d06b05b2d9bb788bfc6b265b.tar.gz ruby-79dbf702ddacdf69d06b05b2d9bb788bfc6b265b.tar.xz ruby-79dbf702ddacdf69d06b05b2d9bb788bfc6b265b.zip |
* exception message clean-up by Ian Macdonald <ian@caliban.org>.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/smtp.rb')
-rw-r--r-- | lib/net/smtp.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb index 123d31d20..9a5e84620 100644 --- a/lib/net/smtp.rb +++ b/lib/net/smtp.rb @@ -373,7 +373,7 @@ module Net # :nodoc: # Finishes the SMTP session and closes TCP connection. # Raises IOError if not started. def finish - raise IOError, 'not started yet' unless started? + raise IOError, 'not yet started' unless started? do_finish end @@ -474,7 +474,7 @@ module Net # :nodoc: def send0( from_addr, to_addrs ) raise IOError, 'closed session' unless @socket - raise ArgumentError, 'mail destination does not given' if to_addrs.empty? + raise ArgumentError, 'mail destination not given' if to_addrs.empty? if $SAFE > 0 raise SecurityError, 'tainted from_addr' if from_addr.tainted? to_addrs.each do |to| @@ -501,7 +501,7 @@ module Net # :nodoc: private def check_auth_args( user, secret, authtype ) - raise ArgumentError, 'both of user and secret are required'\ + raise ArgumentError, 'both user and secret are required'\ unless user and secret auth_method = "auth_#{authtype || 'cram_md5'}" raise ArgumentError, "wrong auth type #{authtype}"\ |