export class AWSUnexpectedLambdaState extends Error {
  constructor (additional) {
    const msg = `While updating the lambda function, the state changed before the update could be completed. ${additional}`
    super(msg)
    this.message = msg