判斷參數 ,拋出異常, 一個方法一個returnthis
public FixedLengthFrameDecoder(int frameLength) { if(frameLength <= 0) { throw new IllegalArgumentException("frameLength must be a positive integer: " + frameLength ); } this.frameLength = frameLength; }