Skip to content

Commit

Permalink
print stacktrace in unpack_from_jar
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
  • Loading branch information
Andrey1994 committed Jul 27, 2023
1 parent b39c60b commit f34072f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ private static Path unpack_from_jar (String lib_name)
return file.getAbsoluteFile ().toPath ();
} catch (Exception io)
{
io.printStackTrace ();
System.err.println ("file: " + lib_name + " is not found in jar file");
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ private static Path unpack_from_jar (String lib_name)
return file.getAbsoluteFile ().toPath ();
} catch (Exception io)
{
io.printStackTrace ();
System.err.println ("file: " + lib_name + " is not found in jar file");
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ private static Path unpack_from_jar (String lib_name)
return file.getAbsoluteFile ().toPath ();
} catch (Exception io)
{
io.printStackTrace ();
System.err.println ("file: " + lib_name + " is not found in jar file");
return null;
}
Expand Down

0 comments on commit f34072f

Please sign in to comment.