Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
activerecord-monetdb-adapter
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
simcaq
activerecord-monetdb-adapter
Commits
8f9c53f6
Commit
8f9c53f6
authored
Aug 09, 2011
by
Martin Samson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed exceptions so message are not outputted to STDERR
parent
fa4f6883
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
36 deletions
+6
-36
lib/MonetDBExceptions.rb
lib/MonetDBExceptions.rb
+6
-36
No files found.
lib/MonetDBExceptions.rb
View file @
8f9c53f6
...
...
@@ -17,39 +17,9 @@
# Exception classes for the ruby-monetdb driver
class
MonetDBQueryError
<
StandardError
def
initialize
(
e
)
$stderr
.
puts
e
end
end
class
MonetDBDataError
<
StandardError
def
initialize
(
e
)
$stderr
.
puts
e
end
end
class
MonetDBCommandError
<
StandardError
def
initialize
(
e
)
$stderr
.
puts
e
end
end
class
MonetDBConnectionError
<
StandardError
def
initialize
(
e
)
$stderr
.
puts
e
end
end
class
MonetDBSocketError
<
StandardError
def
initialize
(
e
)
$stderr
.
puts
e
end
end
class
MonetDBProtocolError
<
StandardError
def
initialize
(
e
)
$stderr
.
puts
e
end
end
\ No newline at end of file
class
MonetDBQueryError
<
StandardError
;
end
class
MonetDBDataError
<
StandardError
;
end
class
MonetDBCommandError
<
StandardError
;
end
class
MonetDBConnectionError
<
StandardError
;
end
class
MonetDBSocketError
<
StandardError
;
end
class
MonetDBProtocolError
<
StandardError
;
end
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment