if ( !-e $configurationFile )
{
( $configurationFile = $0 ) =~ s/\.pl/\-config\.json/;
$log->error( "Não existe o arquivo de configuração...", { package => __PACKAGE__ } )
my $json_text = $self->{ json }->pretty( 1 )->canonical( 1 )->encode( $config->{ $configurationFile } );
open FH, ">", $configurationFile;
print FH $json_text;