Custom loop pagination links not working

Use the following:

$args = array(
  'post_type' => '[custom post type name]',
  'paged' => $paged,
  'has_archieve' => true    
);
$catquery = new WP_Query($args);    
echo pagination_bar($catquery);