You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
344 B
8 lines
344 B
def cria_excecao(classe, mensagem)
|
|
eval "class #{classe}; def initialize; super('#{mensagem}'); end; end"
|
|
end
|
|
|
|
cria_excecao("DinheiroInvalidoError < ArgumentError", "O valor deve estar preenchido e no formato correto. Ex.: 100.00 .")
|
|
cria_excecao("DivisaPorNaoEscalarError < ArgumentError", "So eh possivel dividir dinheiro por numeros.")
|
|
|