Method: JavaMethod#throws_clause

Defined in:
lib/java_testing_guff/qdox_extensions.rb

#throws_clauseObject



207
208
209
210
211
212
# File 'lib/java_testing_guff/qdox_extensions.rb', line 207

def throws_clause
    types=exceptions.collect do |e|
        e.fully_qualified_name
    end
    types.join(",")
end