Package org.kohsuke.github
Class GHCodeownersError
- java.lang.Object
-
- org.kohsuke.github.GHCodeownersError
-
public class GHCodeownersError extends Object
Represents an error in aCODEOWNERSfile. See the relevant documentation.- Author:
- Michael Grant
-
-
Constructor Summary
Constructors Constructor Description GHCodeownersError()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetColumn()Gets column.StringgetKind()Gets kind.intgetLine()Gets line.StringgetMessage()Gets message.StringgetPath()Gets path.StringgetSource()Gets source.StringgetSuggestion()Gets suggestion.
-
-
-
Method Detail
-
getLine
public int getLine()
Gets line.- Returns:
- the line
-
getColumn
public int getColumn()
Gets column.- Returns:
- the column
-
getKind
public String getKind()
Gets kind.- Returns:
- the kind
-
getSource
public String getSource()
Gets source.- Returns:
- the source
-
getSuggestion
public String getSuggestion()
Gets suggestion.- Returns:
- the suggestion
-
getMessage
public String getMessage()
Gets message.- Returns:
- the message
-
getPath
public String getPath()
Gets path.- Returns:
- the path
-
-