Use Javadoc formatting for Java comments. (#66)

This commit is contained in:
Peter Johnson
2017-03-11 21:56:14 -08:00
committed by GitHub
parent b484cbba7c
commit 59133a7d93
14 changed files with 366 additions and 191 deletions

View File

@@ -7,7 +7,9 @@
package edu.wpi.cscore;
/// An exception raised by the camera server.
/**
* An exception raised by the camera server.
*/
public class VideoException extends RuntimeException {
public VideoException(String msg) {
super(msg);