merge from 2_4_Release branch
[jalview.git] / src / com / stevesoft / pat / RegSyntax.java
index ac47c1a..635dc4c 100755 (executable)
@@ -1,29 +1,30 @@
-//\r
-// This software is now distributed according to\r
-// the Lesser Gnu Public License.  Please see\r
-// http://www.gnu.org/copyleft/lesser.txt for\r
-// the details.\r
-//    -- Happy Computing!\r
-//\r
-package com.stevesoft.pat;\r
-\r
-/*\r
-        Shareware: package pat\r
-   <a href="copyright.html">Copyright 2001, Steven R. Brandt</a>\r
- */\r
-/**\r
- This type of syntax error is thrown whenever a syntax error\r
- is encountered in the pattern. It may not be caught directly, as\r
- it is not in the throws clause of any method.  To detect it, catch\r
- Throwable, and use instanceof to see if it is a RegSyntax. */\r
-public class RegSyntax\r
-    extends Exception\r
-{\r
-  RegSyntax()\r
-  {}\r
-\r
-  RegSyntax(String msg)\r
-  {\r
-    super(msg);\r
-  }\r
-};\r
+//
+// This software is now distributed according to
+// the Lesser Gnu Public License.  Please see
+// http://www.gnu.org/copyleft/lesser.txt for
+// the details.
+//    -- Happy Computing!
+//
+package com.stevesoft.pat;
+
+/*
+ Shareware: package pat
+ <a href="copyright.html">Copyright 2001, Steven R. Brandt</a>
+ */
+/**
+ * This type of syntax error is thrown whenever a syntax error is encountered in
+ * the pattern. It may not be caught directly, as it is not in the throws clause
+ * of any method. To detect it, catch Throwable, and use instanceof to see if it
+ * is a RegSyntax.
+ */
+public class RegSyntax extends Exception
+{
+  RegSyntax()
+  {
+  }
+
+  RegSyntax(String msg)
+  {
+    super(msg);
+  }
+};