diff options
Diffstat (limited to 'lib/tom_tom')
| -rw-r--r-- | lib/tom_tom/matrix.rb | 3 | ||||
| -rw-r--r-- | lib/tom_tom/matrix/remote_error.rb | 5 | 
2 files changed, 5 insertions, 3 deletions
| diff --git a/lib/tom_tom/matrix.rb b/lib/tom_tom/matrix.rb index 75c2cc02b..40191aa56 100644 --- a/lib/tom_tom/matrix.rb +++ b/lib/tom_tom/matrix.rb @@ -124,8 +124,5 @@ module TomTom        way_costs      end - - -    class RemoteError < RuntimeError; end    end  end diff --git a/lib/tom_tom/matrix/remote_error.rb b/lib/tom_tom/matrix/remote_error.rb new file mode 100644 index 000000000..a5a7b3cdb --- /dev/null +++ b/lib/tom_tom/matrix/remote_error.rb @@ -0,0 +1,5 @@ +module TomTom +  class Matrix +    class RemoteError < RuntimeError; end +  end +end | 
