diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-11-19 22:33:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-11-19 22:33:39 +0000 |
commit | f3148bef9f9bb43447fbc13d3791734211ac59bc (patch) | |
tree | 8cc8e564ed6b7cffefd57d41e715870ee54cef5e /src/interfaces/jdbc/org/postgresql/util/PSQLException.java | |
parent | 8f6f16929a3f2ce41ee988cc023fd550c89cba3b (diff) | |
download | postgresql-f3148bef9f9bb43447fbc13d3791734211ac59bc.tar.gz |
JDBC indenting, comment cleanups.
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/util/PSQLException.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/util/PSQLException.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/util/PSQLException.java b/src/interfaces/jdbc/org/postgresql/util/PSQLException.java index 99f6f310d7..46c71fab11 100644 --- a/src/interfaces/jdbc/org/postgresql/util/PSQLException.java +++ b/src/interfaces/jdbc/org/postgresql/util/PSQLException.java @@ -3,14 +3,14 @@ package org.postgresql.util; import java.io.*; import java.sql.*; -/** +/* * This class extends SQLException, and provides our internationalisation handling */ public class PSQLException extends SQLException { private String message; - /** + /* * This provides the same functionality to SQLException * @param error Error string */ @@ -20,7 +20,7 @@ public class PSQLException extends SQLException translate(error, null); } - /** + /* * A more generic entry point. * @param error Error string or standard message id * @param args Array of arguments @@ -31,7 +31,7 @@ public class PSQLException extends SQLException translate(error, args); } - /** + /* * Helper version for 1 arg */ public PSQLException(String error, Object arg) @@ -42,7 +42,7 @@ public class PSQLException extends SQLException translate(error, argv); } - /** + /* * Helper version for 1 arg. This is used for debug purposes only with * some unusual Exception's. It allows the originiating Exceptions stack * trace to be returned. @@ -73,7 +73,7 @@ public class PSQLException extends SQLException translate(error, argv); } - /** + /* * Helper version for 2 args */ public PSQLException(String error, Object arg1, Object arg2) @@ -90,7 +90,7 @@ public class PSQLException extends SQLException message = MessageTranslator.translate(error, args); } - /** + /* * Overides Throwable */ public String getLocalizedMessage() @@ -98,7 +98,7 @@ public class PSQLException extends SQLException return message; } - /** + /* * Overides Throwable */ public String getMessage() @@ -106,7 +106,7 @@ public class PSQLException extends SQLException return message; } - /** + /* * Overides Object */ public String toString() |