# Copyright (C) 2017 Koha-Suomi
#
# This file is part of Pootle-Client.
package
Pootle::Exception::Credentials;
use
utf8;
binmode
STDOUT,
':encoding(UTF-8)'
;
binmode
STDERR,
':encoding(UTF-8)'
;
use
Carp::Always;
use
Try::Tiny;
use
Exception::Class (
'Pootle::Exception::Credentials'
=> {
isa
=>
'Pootle::Exception'
,
description
=>
""
,
},
);
1;